Tagged Questions
2
votes
2answers
4k views
Properly setting up willSelectRowAtIndexPath and didSelectRowAtIndexPath to send cell selections
Feel like I'm going a bit nutty here. I have a detail view with a few stand-alone UITextFields, a few UITextFields in UITAbleViewCells, and one single UITableViewCell that will be used to hold notes, ...
1
vote
1answer
74 views
UITableViewCell background image issue when the table scrolls up and comes back on that cell
I'm facing UITableViewCell setup issue when user scrolls down and up the table. The cell looses the changes (red/green background image set in -didSelectRowAtIndexPath) once the grouped-table scrolls ...
1
vote
1answer
130 views
Loading a subview after clicking a tableCell
So I am trying to add in to my current Xcode project a table view which, whenever you click on a cell, whichever one it is, a new subview is added to the window. I will use global variables and the ...
1
vote
1answer
420 views
Push a new view when a cell is tapped in Table View
Hey guys,
I have a Table View that has been populated with 21 data:
- (void)viewDidLoad {
self.title = NSLocalizedString(@"Glossary", @"Back");
NSMutableArray *array = [[NSArray ...
1
vote
3answers
549 views
Push different views from a table
Ive been following a tutorial to implement a search bar ( http://www.iphonesdkarticles.com/2009/01/uitableview-searching-table-view.html ) However I cant seem to push different views. Here is what my ...
0
votes
1answer
22 views
addSubview to specific uitableviewcell on select
I have a tableview and I want to add an imageview to the contentView of the cell at the row it was selected in.
This is my current code and when I click any cell it only adds the imageView to the ...
0
votes
1answer
30 views
How to show deleteConfirmationButton on a clicked UITableViewCell
I'm trying to make an UITableViewCell that shows the deleteConfirmationButton (while in edit mode) just like happens when I click at the editing controls but in my case I want it when the user clicks ...
0
votes
1answer
65 views
pushViewController from cell at didSelectRowAtIndexPath to show different text content for each cell when pushed
i want to push a view controller for each cell selected, to show different text content for each cell when pushed
table A.h
#import <UIKit/UIKit.h>
@interface table_A : UITableViewController
...
0
votes
1answer
50 views
UITableViewCell with buttons added programmatically
I know there are a lot of topics on this subjects, but none gave a me a hint.
I have a tableView with custom cells. I add a UILongPressGestureRecognizer on my cells (actually in a subview of my cells) ...
0
votes
1answer
70 views
How to edit uitableviewcell's background color when the cell is selected
i'm developing an app to show push notification in a uitableview. If notification is not yet shown by user, the cell that print that notification has gray background color.
So when view is loaded in
...
0
votes
0answers
64 views
Tapping on detected data on a UITextView inside a custom UITableViewCell calls didSelectRowAtIndexPath
Alright, I have been searching every keyword combination i could think of but haven't found a solution to this yet. Everyone seems to have the opposite problem of what I am having.
I built a custom ...
0
votes
1answer
267 views
Objective C: UITable Method “didSelectRowAtIndexPath” does not work if label is added to cell
In my implementation, I had to add a custom label to the cell. However, I realize that by doing so, the cell area that is covered by the custom label will not react to the user's 'click' and hence ...
0
votes
0answers
82 views
How do I get information, if row on indexpath is selected in tableview
I would like to load tableview cells with options. If the row at indexpath is selected, it should be higher than the others.
So I would like to reload at didselectrowatindexpath: and in ...
0
votes
2answers
117 views
Make UITableViewCell into a UIView
I have a UITableView, and in the tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath, I want to be able to access the frame that the selected cell is in. Here is what ...
0
votes
1answer
138 views
Turning a cell in a UITableView on/off on the same cell, in the same view
Is it possible to make one cell in a UITableView have an ON/OFF behavior? Basically, when I click a cell, it becomes green, which is what I want. It doesnt go to another viewController or anything. ...
0
votes
1answer
140 views
iPhone SDK - Passing Data in an Array that is NOT shown in a UITableViewCell when that UITableViewCell is Selected
I have have searched all over for a tutorial or something that could show me how to pass data from an array that populates a cells cell.textlabel.text field that also has additional information in ...
0
votes
1answer
386 views
Determining the state of a UISwitch when the UITableCell it is on is clicked
I a newb to IOS programming and I'm having a problem. I've got a table view that I dynamically load with a UISwitch in each cell using the following code in cellForRowAtIndexPath
UISwitch *mySwitch ...
0
votes
2answers
390 views
Passing a value on a IBAction button method in a UITableview Row
I have a value called member id and I want to send it to another view controller, If I place the following in didSelectRowAtIndexPath, The value passes to the variable "member".
int memberIndex = ...
0
votes
2answers
563 views
iPhone XCode, Change UITableViewCellAcessory in didSelectRowAtIndexPath function
Is there any way of changing the UITableViewCellAccessory in the didSelectRowAtIndexPath function?
I need to change a "play"-icon to a "stop"-icon..
Thanks :)
0
votes
4answers
2k views
How do you change the textLabel when UITableViewCell is selected?
I want to change the textLabel and detailTextLabel of a cell when it has been selected.
I've tried the following, but no change occurs:
- (void)tableView:(UITableView *)tableView ...
0
votes
1answer
827 views
UITableViewCell selection stays in all cells !
I am still in the process of getting myself acquainted with the iPhone SDK.
This is what I am trying to do :
I have a UIScrollView and each scroll view has an UITableView and I have implemented a ...
0
votes
2answers
2k views
iPhone - UITableView not calling didSelectRowAtIndexPath method in 3.0 SDK
I have an iPhone app that works fine in 2.x version of the SDK. When I upgraded to 3.0, the didSelectRowAtIndexPath method is no longer called, so the action when a user highlights a row doesn't ...