¡@

Home 

2014/10/15 ¤U¤È 10:13:38

iphone Programming Glossary: savebutton

Multiple UIBarButtonItems in UINavigationBar

http://stackoverflow.com/questions/5100840/multiple-uibarbuttonitems-in-uinavigationbar

buttons NSMutableArray buttons NSMutableArray alloc initWithCapacity 3 create a standard save button UIBarButtonItem saveButton UIBarButtonItem alloc initWithBarButtonSystemItem UIBarButtonSystemItemSave target self action @selector saveAction saveButton.style.. UIBarButtonItem alloc initWithBarButtonSystemItem UIBarButtonSystemItemSave target self action @selector saveAction saveButton.style UIBarButtonItemStyleBordered buttons addObject saveButton saveButton release create a spacer between the buttons UIBarButtonItem.. target self action @selector saveAction saveButton.style UIBarButtonItemStyleBordered buttons addObject saveButton saveButton release create a spacer between the buttons UIBarButtonItem spacer UIBarButtonItem alloc initWithBarButtonSystemItem..

adding more than two button on the navigationbar

http://stackoverflow.com/questions/6249416/adding-more-than-two-button-on-the-navigationbar

buttons NSMutableArray buttons NSMutableArray alloc initWithCapacity 3 create a standard save button UIBarButtonItem saveButton UIBarButtonItem alloc initWithBarButtonSystemItem UIBarButtonSystemItemSave target self action @selector saveAction saveButton.style.. UIBarButtonItem alloc initWithBarButtonSystemItem UIBarButtonSystemItemSave target self action @selector saveAction saveButton.style UIBarButtonItemStyleBordered buttons addObject saveButton saveButton release create a spacer between the buttons UIBarButtonItem.. target self action @selector saveAction saveButton.style UIBarButtonItemStyleBordered buttons addObject saveButton saveButton release create a spacer between the buttons UIBarButtonItem spacer UIBarButtonItem alloc initWithBarButtonSystemItem..

Save data from 1 page and add that data to a tableView

http://stackoverflow.com/questions/6698333/save-data-from-1-page-and-add-that-data-to-a-tableview

button on the second page i want the textFields text to be added to the tableView. Here is the code i'm using IBAction saveButton id sender CheckListPracticeViewController obj CheckListPracticeViewController alloc init obj.cells insertObject textField.text..