uitableview - How to realize an UiTableWiev with placeholders? -
how can realize uitablewiev this?
http://i.stack.imgur.com/8qvb4.jpg
i appreciate gives me tutorial.
also table fb fine http://img688.imageshack.us/img688/4162/photocr.jpg
thanks
add uitextfield uitableviewcell.
- (uitableviewcell *)tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath  {     /* standard uitableview setup code */      uitextfield *mytextfield = [[uitextfield alloc] initwithframe: cgrectmake(60, 12.7, 250, 20)];     /* other textfield code want add */     [cell addsubview: customtextfield];      return cell; }   at bottom of the list, find tableview file-based persistence demonstrates how this.
Comments
Post a Comment