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

2
votes
2answers
33 views

iOS. Add the same second action for UITableView didSelectRowAtIndexPath event?

I have several UITableViews with ready delegate and dataSource methods. How to add the same second action/handler for these tables using subclassing but without of editing their ...
0
votes
2answers
73 views

How to retrive data when app is quit in objective C

I have an the app when notification is fired i get a notification bar when the app is in background ,when i tap on that bar it navigates into tableview of the notification set . When i quit the app ...
0
votes
3answers
39 views

UiTextView in Custom UiTableViewCell does not responds to didSelectRowAtIndexPath

I have a UITextView on a custom UITableViewCell and when I click on the UITextView, it does not trigger the didSelectRowAtIndexPath, how do I change this behavior so that that delegate is called as ...
0
votes
5answers
41 views

Populating UITextView with Specific Info when UITableView Row is Selected

I have a UITableView and another view. The other view has a UITextView that I want populated with different text depending on what row in the table view is selected. I know how to do it if I create ...
-1
votes
2answers
56 views

How to get the values of selected cells of a UITableView in one string

i'm pretty sure this is really simple. But i can't get to make this work. I have a UITableView where i display dynamically a list of facebook friends, thanks to their FBID. Basically, i would like to ...
0
votes
2answers
35 views

Can't Change Accessory Type From didSelectRowAtIndexPath?

Before I post the question itself, I need to state this is a jailbreak app. This is why I'm writing in "bizarre" folders in the filesystem. Let's continue. Here is my cellForRowAtIndexPath method: ...
-3
votes
3answers
68 views

Pass header view label text on UITableView didSelectRowAtIndexPath method

My table view has headers which contain 2 labels on that(header view). How can I pass this labels' text to other view on didSelectRowAtIndexPath method Here is the header view label adding -(UIView ...
2
votes
1answer
113 views

Passing Data Between View Controllers DidSelectRowsAtIndexPath Storyboards

In a simple test app, i have tried to pass an array object named "thisArray" from the MasterViewController to the a string named "passedData" in the DetailViewController. I am using Storyboards and ...
-2
votes
2answers
40 views

passing data from uitableview to uiview [closed]

I have a table in an UIViewController, I also have a sub view which is UIView. I was trying to pass data from the table to the UIView. in uiviewcontroller I have : uiview *viewContent , and ...
0
votes
1answer
34 views

I'm trying to add a tableviewcell from one table to a different table Xcode

I am developing an iphone app for a class project and am displaying a bunch of different products. I am trying to create a favorites page where users can add one of the products to their favorites ...
0
votes
2answers
114 views

Array goes empty in DidSelectRowAtIndexPath

I have in my coreDatabase an entity "Day". In a method I fetch the data from that entity and put it in a mutuableArray dayObjects. You can see the code over here. NSManagedObjectContext *context = ...
-1
votes
1answer
34 views

backgroundTap hides didSelectRowAtIndexPath [duplicate]

I have a UITableView with some UITableViewCells that contain labels with suggestions for text to be inserted into a UITextView. I want that when the user taps on some uitableviewcell with text ...
0
votes
0answers
28 views

update plist value within detail view

I've searched the internet about updating a plist within a detail view but I can't get a answer for this. I've saved the plist in the documents directory of my app! I know how to write and read from ...
0
votes
2answers
114 views

tableView:didSelectRowAtIndexPath - message sent to deallocated instance

I have read much topics, but I nothing works. I have a code, but when I click a cell I get this error: *** -[ModeViewController tableView:didSelectRowAtIndexPath:]: message sent to deallocated ...
1
vote
1answer
85 views

sending data from DetailViewController to MasterViewController

This is what exactly I'm trying to do. wizardviewcontroller.m - (IBAction)onCountryClick:(id)sender { MJDetailViewController *detailViewController = [[MJDetailViewController alloc] ...
0
votes
2answers
172 views

UITableViewCell textLabel height resets after selecting/highlighting same cell

I have an issue regarding UITableViewCell's textLabel property when reselecting (touching without lifting a finger) a cell that's already selected. I have a custom contentView being added in the ...
0
votes
0answers
99 views

Detail view displays the same record for all table cells

All the table view cells display the same thing .. the last record of the sqlite database I'm using storybaord .. the code runs with no issues .. and when I try to NSLog the data read from the ...
0
votes
3answers
127 views

Selecting Cell in Table IOS

I am trying to create a method that changes the string object "tableColorName" to the cell selected. The tableData NSArray consists of object: "red","blue","green". I want to save the string ...
0
votes
1answer
125 views

didSelectRowAtIndexPath is not being called in included nib

I've a class say clsBase, is the base class of all other classes. And I've a Title class which contains TitleBar at the top. In TitleBar nib there's a menu button clicking on it, it shows a ...
0
votes
1answer
113 views

Tapping UIButton in custom cell doesn't call didSelectRowAtIndexPath

I have a UIButton in a custom cell that I programmatically added: UIButton *tag = [[UIButton alloc] init]; [tag addTarget:self action:@selector(buttonClicked:) ...
0
votes
1answer
192 views

UITableView behin UIScrollView

For my needs I have a UITableView directly added under a UISCrollView : --- Main UIView -------- UITableView -------- UIScrollView So when I scroll my scrollview I change the content offset of my ...
0
votes
1answer
119 views

didSelectrow doesn't work with scrollview and tableview (iOS)

At the moment I'm creating an app which has a scrollview and tableview. I used the code like here: http://johansorensen.com/articles/touches-and-uiscrollview-inside-a-uitableview.html but cause of ...
0
votes
1answer
74 views

Using identity of pressed button & array row to perform segue

I'm just starting with iOS and objective C and one of the things that I'm trying to accomplish in my current app is to perform a segue based on the identity of the row in the table view and identity ...
0
votes
1answer
226 views

How to push DetailViewController from selectedRowAtIndexPath

When i click from my SecondViewController on a cell i want to go to my DetailViewController from the Storyboard. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
1
vote
1answer
92 views

iOS: parse url of a selected row in didSelectRowAtIndexPath method

A. Is it possible/appropriate to initialize NSXML parse for a selected row inside didSelectRowAtIndexPath in order to populate the detail view that the method pushes to? I want to parse the URL ...
0
votes
3answers
138 views

iOS: Check values? NSDictionary, NSArray, NSString

Skip the following These values are the first three lines of a TVC didSelectRowAtIndexPath method which is giving me all kinds of exceptions when I select an item in a row. How do I: a. Check ...
0
votes
3answers
512 views

Scrollable GridView for iPad

I am implementing a Table for iPad and facing some major problems. For the GridView I implemented my own subclass of UITableViewCell which works fine. The data is shown correctly, but I have a ...
0
votes
3answers
471 views

Push a new view controller on tableview cell tap

I have one header file which is @interface DemoFirstViewController : UIViewController <UITableViewDelegate, UITableViewDataSource> @end In the source file of this header file i have declare ...
0
votes
3answers
157 views

iOS: UITableView Selective Touches

I have a UITableView that has certain cells that are a different height. I was hoping to have a way, without adding a button to each cell, to not receive responses to didSelectedRowAtIndexPath, if the ...
0
votes
1answer
215 views

didSelectRowAtIndexPath: only being invoked after ~3 second hold on cell

I am loading my cells from a nib, which are subclasses of UITableViewCell. Each of these cells are setup with userInteraction set to YES (in the nib file). When tapping on a cell, the selection of ...
0
votes
1answer
499 views

Controller has no segue with identifier

I connected my UITableViewController to a NavigationController with ctrl, defined the segue as "modal" and defined the segue identifier "DetailEvent". In the class of my UITableViewController I added ...
0
votes
2answers
129 views

TableView didSelectRowAtIndexPath before ViewDidLoad

I want didSelectRowAtIndexPath to execute before ViewDidLoad. How to do it? in didSelectRowAtIndexPath : [[NSUserDefaults standardUserDefaults] setObject:[[array objectAtIndex:indexPath.row + 1] ...
0
votes
1answer
120 views

UITableview - didSelectRowAtIndexPath shows different data issue

I am parsing RSS to UITableview and the data looks as it should but when I select one of the field in the UITableview it opens different data then what it should. Also when I scroll the tableview the ...
2
votes
1answer
125 views

Programmically edit title of controller in didSelectRowAtIndexPath

Previously, I was trying to go to another controller using the following code but failed - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { RowDetail ...
0
votes
1answer
103 views

Passing a core data object to a sub view on didSelectRowAtIndexPath

I have a core data setup that has 2 database entities. For the sake of names I'll call them Primary and Secondary. Secondary only belong to one Primary (relationship is setup). In my main view that ...
0
votes
2answers
317 views

Storyboard segue gets called before UITableView's didSelectRow

I have a storyboard with segue from a table cell. I want to set some properties with some data when a row gets selected so I do the following: - (void)tableView:(UITableView *)tableView ...
0
votes
2answers
104 views

How to save an item from didSelectRowAtIndexPath: to NSUserDefaults

I'm trying to save the cell title of a selected table view row to NSUserDefaults. I have the following code in the didSelectRowAtIndexPath: method. At the moment this saves the entire listOfItems (an ...
0
votes
1answer
221 views

xcode pass object using segue

I am trying to pass an object from a view controller to another one. In the destinationController I have: @interface destinationController : UITableViewController{ destinationController *object; ...
0
votes
2answers
126 views

didSelectRowAtIndexPath get called just once

i have two view controllers, FirstViewController and DetailViewController, switch back and forth. in didSelectRowAtIndexPath method ---> updateRowNumber:indexPath.row, i pass the selected row number ...
1
vote
1answer
216 views

Acting on didSelectRowAtIndexPath during UISearchDisplayController

I have a UIScrollView that contains a UIImageView and a UISearchDisplayController. When the user taps on the image, the search display controller appears. I’m filtering a list based on the search text ...
0
votes
2answers
31 views

TableView won't allow me to press up and transfer view. Obj-C, Cocoa Touch

So I have an app that contains a tableView. When you press on a row, it should go to a new view controller and transfer the results. But it only sort-of works. If you press on a row, it will stay ...
0
votes
1answer
831 views

How to get selected row from UITableView with Search Display Controller

I have my search display view controller based off TableSearch. Normally, following expression gives selected index row: self.tableView.indexPathForSelectedRow.row However while in search mode, ...
0
votes
1answer
57 views

U_ILLEGAL_ARGUMENT_ERROR crashing my application

This is the error I am reciving when I select a value from my UITableView *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Can't do regex matching, reason: ...
0
votes
2answers
836 views

Pushview on didselectrowatindexpath in storyboard

I have a tableview added as a subview in one of the viewcontrollers in storyboard. It has 6 sections each having one row. On selecting each row a new viewcontroller should open. There are 6 such ...
0
votes
2answers
1k views

Xcode didSelectRowAtIndexPath on tableview not called

I have been looking until 6 o'clock this morning, but I can't figure out why the didSelectRowAtIndexPath method is not being called. I am getting quite desparate on this one. The tableview is ...
2
votes
0answers
243 views

iPhone didSelectRowAtIndexPath not invoke for cells number 10, 20,30

here is the thing. I have a tableview with a variable number of rows. When you tap one of them, a detail view is shown. Everything is ok if you tapped rows from 0 to 9, 11 to 19, 21 to 29 etc... But ...
0
votes
0answers
366 views

UITableView didSelectRowAtIndexPath being called after the second tap

In my application, I'm using a UITableView for showing the reservations for a doctor on a specific day. With the help of two gesture recognizers I'm able to swipe over the table view to show the next ...
0
votes
1answer
99 views

tableView.setScrollEnabled is No, DidSelectRowAtIndex not responding

If tableView.scrollEnabled = NO, then didSelectRowAtIndexPath is not responding to first touch, but only to the second select row. Do you have any idea why?? Please help.
0
votes
3answers
245 views

Multiple Taps Required in UITableView for Checkmarks

Be gentle, I'm learning. The code below actually works fine except for the fact that after I tap a row for the first time (which appropriately places a checkmark), I then have to tap a cell twice to ...
0
votes
1answer
141 views

UITableView reusable cell or not

I'm developing an app that represents a huge amount of data using UITableView with a custom UITableViewCell. When the tableView is set to editing mode, it supports multiple selection for further ...

1 2 3 4 5