Tagged Questions

iOS - didSelectRowAtIndexPath: is a UITableView delegate method which is called when the user selects a row on a table view. Navigation logic goes here.

learn more… | top users | synonyms

11
votes
1answer
3k views

UITableView didSelectRowAtIndexPath: not being called on first tap

I'm having an issue with UITableView's didSelectRowAtIndexPath. My table is setup so that when I select row it initializes a new view controller and pushes it. The first time I tap any row in the ...
3
votes
3answers
475 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 ...
3
votes
7answers
10k views

-didSelectRowAtIndexPath: not being called

I'm writing an iPhone app with a table view inside a tab view. In my UITableViewController, I implemented -tableView:didSelectRowAtIndexPath:, but when I select a row at runtime, the method isn't ...
2
votes
2answers
119 views

UINavigationController - Application tried to push a nil view controller on target, what am I missing?

I am having problems to get my Navigation Controller to run properly! If I click in the cell of the table at the RootViewController, it appears not the next ViewController. Error message reads ...
2
votes
4answers
523 views

didSelectRowAtIndexPath not get called

I have a UITableView inside a UIViewController like so: .h @interface OutageListViewController : UIViewController<UITableViewDelegate,UITableViewDataSource> { IBOutlet UITableView ...
2
votes
1answer
1k views

UITableView didSelectRowAtIndexPath add additional checkmark at tap

When i select a player in 'didSelectRowAtIndexPath' and add a checkmark on the selected row it adds an additional checkmark. If i tap row = 0 it adds a checkmark to row = 0 and row = 11. This means ...
2
votes
1answer
545 views

UINavigationController with UIView and UITableView

I'm creating a navigation-based app which displays a graph, rendered with openGL, and a tableview listing disclosure buttons of all of the elements that are displayed on the graph, and a settings ...
2
votes
1answer
2k views

Why won't my UISearchDisplayController fire the didSelectRowAtIndexPath method?

I am having an odd problem when searching a UITableView using a UISearchDisplayController. The UITableViewController is a subclass of another UITableViewController with a working ...
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
3answers
102 views

didSelectRowAtIndexPath: not being called

I have a UITableView as a subview of my UIScrollVIew, which is the main view controlled by my MainViewController. In MainViewController.h @interface MainViewController : UIViewController ...
1
vote
1answer
75 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
3answers
122 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
77 views

Synchronized access to UITableViewDelegate logic

I'd like to ask a question about table view and @synchronized contruct. I have to execute the code inside didSelectRowAtIndexPath once, even if user keep tapping on table cell... I have a table used ...
1
vote
1answer
227 views

UITableView didSelectRowAtIndexPath error - when selecting item again

Loaded a list of items on to the UITableview and was able to click and show an alert for the row selected . But however after saying "ok" on the alert and i reclick on the already selected row my code ...
1
vote
1answer
132 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
3answers
218 views

Using CustomCell on tableView, how can I get didSelectRowAtIndexPath called?

I'm populating a UITableView with CustomCells and I'm trying to get didSelectRowAtIndexPath called. Here is the header for the Custom Cell. #import <UIKit/UIKit.h> @interface CustomCell : ...
1
vote
2answers
104 views

loading image dyanmically into tableviewcell

Is there a better way to load images dynamically into the tableviewcell for different rows other than using the if statements? What if I have a lot of cells. does that mean I would have to write a lot ...
1
vote
1answer
202 views

help on sorting NSMutableDictionary strings that are URL images

i want to populate the tablecell with title and imageurl from xml list. i manage to store the title (NSMutableDictonary *sections )and imageURL (NSMutableDictonary *sectionsImg) into 2 ...
1
vote
2answers
347 views

UITableView didSelectRowAtIndexPath , different value from what is displayed in section rows!

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { Directory *aDirectory = [appDelegate.directories objectAtIndex:indexPath.row]; ...
1
vote
2answers
203 views

didSelectRowAtIndex issue

I have a UITableView in which I have added sections. When using didSelectRowAtIndex with indexPath.row I am not getting the correct value. Let's say I'm in section 2, then it starts the row index ...
1
vote
1answer
53 views

how do I use a file from my apps documents directory with “didSelectRowAtIndexPath”?

I have a bunch of mp3's displayed in a UITableView which are located in my apps documents directory. When I select the row, I want the file to load into AVAudioPlayer and Play. Can anyone suggest ...
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
5answers
2k views

didSelectRowAtIndexPath with section

I have a UITableView which I have assigned sections. When using didSelectRowAtIndex with indexPath.row I am not getting the correct value. Let's say I'm in section 2, then it starts the row index at 0 ...
1
vote
1answer
132 views

How to navigate to a nib(view) when a cell is pressed on a UITableView(on another nib/view)?

I want the functionality similar to the last tabs in a tab bar (those that are shown in a table after pressing the "..." ) Each points to another view. My table page a> page b> page c> I guess ...
1
vote
3answers
550 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 ...
1
vote
2answers
301 views

Opening Phone Links in didSelectRowAtIndexPath iPhone SDK

Is it possible to determine a row's detailTextLabel based on an indexPath in didSelectRowAtIndexPath? I want to be able to open a phone link using [[UIApplication sharedApplication] openURL:xyz] ...
1
vote
1answer
135 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 ...
1
vote
2answers
513 views

How do I disable selectRowAtIndexPath when subview is visible

I am writing a "tweetie 2" like swipe functionality, but have run into what I hope is the last stumbling block. When a user swipes across a table row the "controls" view animates as expected, but ...
1
vote
1answer
1k views

-didSelectRowAtIndexPath not working for me. iPhone SDK 3

Hey everyone. I am trying to incorporate a simple UINavigationController into my tab bar application. I have the TabBar set as the root controller and all seems to work fine. This method is called ...
1
vote
1answer
4k views

AppDelegate Being accessed from different classes, from RootController.m

My problem is in getting the information from a controller(which happens to be my rootViewController) to another view. In trying to get access to it through the app delegate, I was not able to get it ...
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
28 views

viewDidLoad being called before didSelectRowAtIndexPath

I have viewDidLoad (of next tableView) being called before didSelectRowAtIndexPath (of current tableView). I am using a 'singleton' to hold my model and up to now this has been working quite well. I ...
0
votes
3answers
40 views

How to retrieve the data on selection of a cell from a custom UITableview

Might be a stupid question. I have a UITableview, with multiple cells. In each cell I am displaying some data. I am not using cell's text property to display data. Instead I have a custom label ...
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
59 views

UITableView didselectRowAtIndex doubts

Ha ii ,am doing a application which has a share Note option to evernote i done it sucessfully,i have a tableview which contains text and a button for upload these text to evernote,if the user click ...
0
votes
1answer
67 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
31 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
1answer
52 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
84 views

Unable to trigger UITableView Delegate Method “DidSelectRowAtIndexPath”

Hi I am using a searchDisplayController to filter through my search results. My code snippet is as follows: - (void)viewDidLoad { [super viewDidLoad]; //Set up search bar UISearchBar ...
0
votes
1answer
72 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
1answer
36 views

autocorrect in UISearchBar interferes when I hit didSelectRowAtIndexPath

I have a Searchbar that generally works. The problem comes when I test on the iPhone, the autocorrect kicks in. I have the search bar set that if there is text in the query bar > 4 in length,then it ...
0
votes
0answers
50 views

Master Detail dynamic array in Ios

Currently i fill two uitableviews with each an array (master and detail) with images. When i tap on the master tableview, the array with images for the detailview are filtered. So that is good. The ...
0
votes
2answers
440 views

Why wont my segue from UITableView cell to a detailView work?

Here is my code..... - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { [tableView deselectRowAtIndexPath:indexPath animated:NO]; [self ...
0
votes
1answer
111 views

Setting Integer Value in Table View Controller (didSelectRowAtIndexPath) For Use With PList (iOS)

I'm attempting to use a PList to populate a view controller that's pushed from a view controller that's pushed from a table view. More simply: ...
0
votes
1answer
60 views

UIActivityIndicator in tableviewcell Showing Up Late when loading the detailview?

I have a tableview with responding detialview. In the detailview I have some images and labes that is loaded from a URL. I'm trying to add a UIActivityindicatorview to the cell to show that is ...
0
votes
2answers
148 views

IndexPath for UITableView Not Working

I'm trying to determine the indexPath of the select row of my UITableView so I can pass the relevant data accordingly. Right now it keeps logging 0 no matter what cell I select. Any ideas why? ...
0
votes
0answers
67 views

didSelectRowAtIndex wrong index

I have a UITableView with searchDisplayController with search result. When using didSelectRowAtIndex with indexPath.row I am not getting the correct value. Search result contains incorrect number of ...
0
votes
3answers
119 views

How to use didSelectRowAtIndexPath in objective-c

I have a Tab Bar with a navigation table view. My app crashes when I select a cell on my table view. I want a new viewcontroller to open when a cell is selected. My guess is that I am not pushing it ...
0
votes
0answers
113 views

call didSelectRowAtIndexPath from other ViewController doesnt work

i send a message to a tableView in another controller. Actually i am in detalViewController. The tableView i am addressing is in DashboardViewController: -UIViewController --UIView ---UITableView //i ...
0
votes
0answers
83 views

adding custom cell at didselectrowatindexpath

im new to iphone dev. and i desperately need your help. thanks in advance. i have a custom cell loading onto a uitableview. i would like, when the user tap a cell, a little space opens up just below ...

1 2