Tagged Questions
3
votes
3answers
480 views
tableView didSelectRowAtIndexPath called twice
Under certain circumstances, tableView didSelectRowAtIndexPath is being called twice causing the error 'Pushing the same view controller instance more than once is not supported'
Here's are the ...
1
vote
3answers
125 views
TableView: How to select another row's value from didSelectRowAtIndexPath routine
When didSelectRowAtIndexPath is called, it's easy to get a cell's text value using:
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
entryText = cell.textLabel.text;
However, I'm ...
1
vote
1answer
136 views
Go back to main window once secondView is loaded
I have a Tableview on AppDelegate That calls a SecondView (dvController) when DidSelectRowAtIndexPath using:
[self.window addSubview:[dvController view]];
On SecondView I defined a button linked to ...
0
votes
1answer
32 views
tableview selecting new views
Here is the code I have at present:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *__strong)indexPath {
DetailViewController *detail = [self.storyboard ...
0
votes
0answers
65 views
customize table, some cells do not push a new view
I've been looking through all the questions on this site for tableView, but cannot find the answer I need. I want to have some of the cells in a table view go to a detail view, but if the cells ...
0
votes
1answer
207 views
How to push a new viewController in a tableview which is a inserted view of a navigationcontroller?
HI,
I have a HomeViewController.m in which I push SpecificViewController by self.navigationController,
SpecificViewController *specificViewController=
[[SpecificViewController alloc] ...
0
votes
1answer
3k views
When I tap the first cell in my tableview didSelectRowAtIndexPath is not triggered
When I tap the first cell in my tableview "didSelectRowAtIndexPath" is not triggered... Has anyone seem this and/or have any clue as to why this happens? All the other cells in my table work just ...