|
|
#1 |
|
Adding a button in the tableview.
Hi,
I want to add button in tableview. In the design time i cannot add button in tableview.Can i add it in the coding? If so, how?
__________________
Judy |
|
|
|
0
|
|
|
#2 |
|
Coding is your friend - Interface Builder will be of no use here.
Probably best to subclass UITableViewCell and add a button as a subview during cell initialisation, but you don't have to subclass. If you don't want to subclass, you can initialise the button somewhere within the cellForRowAtIndexPath method (I normally create the tableView:dequeueCellWithIdentifier: and configureCell:atIndexPath: methods as in some of the Apple examples). The key thing is to add the button as a subview of the cell's content view in a similar way to how you would add a custom label: Code:
[cell.contentView addSubview:myButton] Don't forget to release your button instance once you have added it as a subview as the parent view (in this case the cell's content view) retains its subviews at the point you add them. Hope that gives you a starting point. |
|
|
|
0
|
|
|
#3 |
|
thanks
__________________
Judy |
|
|
|
0
|
|
|
#4 |
|
Actualy i placed the tableview control in my view , and i want to add the button in the last cell of tableview
How can i addit?
__________________
Judy |
|
|
|
0
|
|
|
#5 |
|
Do you need a button in a cell or a button as a cell? If the second then you could create a button and set it as the tableview's footer view. You will have to do this in code as I don't think you can do it in IB.
|
|
|
|
0
|
|
|
#6 | |
|
Quote:
i want to add button in the 6th cell of the tableview
__________________
Judy |
||
|
|
0
|
![]() |
|
«
Previous Thread
|
Next Thread
»
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| thread | Thread Starter | Forum | Replies | Last Post |
| in Xcode 4, where can I find the "class" button in the Library window? | wayneljw | iPhone/iPad Programming | 2 | Aug 11, 2011 12:52 AM |
| Missing Tracks from iTunes in the Cloud | AndrewLGP | Mac Applications and Mac App Store | 3 | Jun 19, 2011 03:16 PM |
| Is there a keyboard shortcut for the button in the top right corner of the Finder? | illjazz | Mac Basics and Help | 4 | Jan 6, 2010 07:08 PM |
| Anyone else wish the send button in the messages app was bigger? | Bacong | iPhone | 10 | Jul 6, 2009 04:48 AM |
| The "Tic-Tac" button in the Finder & Icon sizes | Karvel | OS X | 1 | Aug 15, 2007 09:18 PM |
All times are GMT -5. The time now is 05:54 AM.









Linear Mode

