Tagged Questions
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
4answers
522 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
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
101 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
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
3answers
217 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
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
346 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
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
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
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 ...
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
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
2answers
439 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
59 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
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
1answer
95 views
Updating label based on picker value the very first time a view is loaded
I'm new to iPhone development, so my apologies if this is a ridiculous question.
I'm following a sample from a book where it creates a exchange rate UIPicker and when you select one of the entries, ...
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
2answers
118 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
2answers
194 views
'indexPath' undeclared (first use in this function)
I have the following error. 'indexPath' undeclared (first use in this function).
Code.
didSelectRowAtIndexPath
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
0
votes
0answers
626 views
UITableView didSelectRowAtIndexPath “separate selected sections of cell”
OK I have a tableView that is populated with text, detailed text, and images. I added a UIButton in front of the image at the index row and sent this to a @selector to fire off an action.
This works ...
0
votes
3answers
195 views
Change the accessorytype of all the row of UITableView
I want to Change the accessory type of all the cells of UITableView on click the bar button item.Is there any idea or code for this.
0
votes
2answers
96 views
how can i get a row text from UITable View ? or(NSIndexPath)
i have
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
}
can i get the row appended string from it?if yes,tell me the way to get it?
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
73 views
Data problem of iPhone UITableController
I am new to iPhone development, and I recently encounter a very strange problem with UITableController. I implemented a very simple program with UITableController where it has a datasource of an array ...
0
votes
1answer
319 views
How to pass the number of row selected from didSelectRowAtIndexPath to initWithNibName?
I have a tableView(first view).. and the detailView(next view) containing the details of that table.
now on selecting a particular row from the first view i want to pass the index number of selected ...
0
votes
3answers
279 views
How can I resolve this 'unrecognized selector sent to instance' error?
The error reads Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[MObject objectAtIndex:]: unrecognized selector sent to instance. So, what I get out of that is that ...
0
votes
2answers
203 views
Loading more than one detail view from didselectrowatindexpath
I have a table view, with just basically 2 rows, add category and delete category. On selection of lets say add category i want to load an add category view, and similar for the delete category. How ...
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
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
775 views
didSelectRowAtIndexPath returns wrong IndexPath
I have encountered a really puzzling bug. The first row of my UITableView returns 1 and the second one returns 0 in the indexPath! How is that even possible?
In my `-(void)viewDidLoad` everything is ...
0
votes
2answers
220 views
didSelectRowAtIndexPath - access tapCount or similar
I'd like to control an instance of AVAudioPlayer from a UITableView item in a didSelectRowAtIndexPath instance.
First touch of the row item triggers 'play' of the AVAudioPlayer. Second touch of the ...
0
votes
1answer
164 views
Use dictionary with didSelectRowAtIndexPath
I am trying to get the trail name from the selected cell and pass it on to the next view in didSelectRowAtIndexPath. How would I go about this?
http://pastebin.com/bgXNfjie
0
votes
1answer
161 views
iphone store table-cell text into a file
HI,
From a table, once i selected the row, i would the row name to be store in a text file. how do i do that?
0
votes
1answer
364 views
Question regarding implementation of multi component dependent uipickerview
I am having trouble grasping the concept of multi component uipickerviews. I really would like to just OWN this subject. I would like to make a 4 component pickerview with components that are ...
0
votes
1answer
271 views
How do i know in the detail view what cell in tableview was selected?
how can i know what tableview cell was selected?(being in the detail view)
The problem is that.
I have an table view controller. Here are parsed from the internet entries to the table.
So it's a ...
0
votes
1answer
510 views
didSelectRowAtIndexPath does not get called when scrolling and selecting a cell
It seems when I scroll my table view that if I select a cell while the table view is still scrolling, didSelectRowAtIndexPath doesn't get called. It works fine when the table view is still.
Any ideas ...
0
votes
1answer
3k views
How do I get String value out of NSMutableArray
Code:
[self.menuList addObject:[NSDictionary dictionaryWithObjectsAndKeys:
NSLocalizedString(@"PropertySubtype2fTitle", @""),
...
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
5answers
4k views
Unable to pushViewController for subview
I have a UINavigationController and I have seperate UIViews that I switch between using a UISegmentControl. On switching the views, I add the view as a subview to my navigation controller's view:
...
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 ...
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 ...