Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>From your question, I can't understand exactly what you need.</p> <p>If you need boilerplate code like the <code>-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath</code> implementation that comes when you subclass <code>UITableViewController</code>, then you should create your own templates <a href="https://stackoverflow.com/questions/7985963/how-to-auto-generate-stubs-for-protocols-in-xcode-4-2/8137978#8137978">as Grouchal suggests</a>. Also check a similar question I asked <a href="https://stackoverflow.com/questions/5975883/how-to-create-a-new-templates-category-on-xcode-4-and-use-my-own-file-template">here</a>.</p> <p>I think that the tutorial you link to refers to code sense, for example:</p> <ul> <li>In a header file, add a protocol like <code>&lt;UITextFieldDelegate&gt;</code>:</li> </ul> <p><code>@interface FirstViewController : UIViewController &lt;UITextFieldDelegate&gt;</code></p> <ul> <li>Save, and then in your .m file, you can see the new methods that you can implement just by typing a dash "-" and then pressing "Escape" on your keyboard. It helps if you type the first letters, for example "-tex" and then "Escape" will display the methods of the UITextFieldDelegate.</li> </ul> <p>Try the same with <code>UITableViewDelegate</code> and <code>UITableViewDataSource</code>, you will see that you'll get a similar result as the one at <a href="http://4.bp.blogspot.com/-hgc817UDRAk/Tp-lH1b3C6I/AAAAAAAAAR0/CFVLRZWoBc8/s1600/Screen+Shot+2011-10-20+at+12.30.20+AM.png" rel="nofollow noreferrer">step 4</a> of your tutorial (note that in the screenshot, the user has already typed "-tab" to get the list of methods).</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload