Can Xcode 4.2 auto-generate me the stubs for the protocols i defined in the header-file?
In this tutorial (http://kurrytran.blogspot.com/2011/10/ios-5-storyboard-and.html) in the note of point 4 the author says, Xcode will now auto generate the methods i need. Otherwise I did something wrong…
From your question, I can’t understand exactly what you need.
If you need boilerplate code like the
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPathimplementation that comes when you subclassUITableViewController, then you should create your own templates as Grouchal suggests. Also check a similar question I asked here.I think that the tutorial you link to refers to code sense, for example:
<UITextFieldDelegate>:@interface FirstViewController : UIViewController <UITextFieldDelegate>Try the same with
UITableViewDelegateandUITableViewDataSource, you will see that you’ll get a similar result as the one at step 4 of your tutorial (note that in the screenshot, the user has already typed “-tab” to get the list of methods).