Search Results

1
vote

Cocoa and Objective-C resources?

As others have mentioned Cocoa Programming for Mac OSX is a very good choice for a book. Make sure that you get the third edition if you're using Leopard and Xcode 3.0 or later. There were some c …
5
votes

What are those little Xcode tips & tricks you wish you knew about 2 years ago?

When you use code completion on a method and it has multiple arguments, using CTRL + / to move to the next argument you need to fill in. …
0
votes

How can replace the string [Foo alloc]<cursor> with [[Foo alloc]<cursor>] in XCode?

Textmate will auto-back fill ['s for you. You can also build your xcode project from inside it as well as do thousands of other interesting thing …
0
votes

Reloading a view when back button is clicked from uinavigationbar

Take the code that sets the button up in the viewDidLoad method and move it into viewWillAppear. It should update the button properly when you re-enter the view. …
1
vote

How do you toggle the status item in the menubar on and off using a checkbox?

Get an outlet to your button you want to toggle and then create an action method that your checkbox points to that toggles the hidden property of the original button based on the check box status. …
2
votes

iPhone restrict user from entering space in textfield

This will search to see if your replacement string contains a space, if it does then it throws the error message up, if it doesn't it returns YES. - (BOOL)textField:(UITextField *)t …
0
votes

How to customize the content of each page using Page Control and UIScrollView?

I downloaded the sample, added the following lines to the MyViewController.h IBOutlet UILabel *pageText; @property (nonatomic, retain) UILabel *pageText; In the M …