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 ...
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
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
100 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
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
131 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
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
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
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
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 ...
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 ...
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
27 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
58 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
51 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
2answers
435 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
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
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
85 views

Play Audio (mp3) .plist - Didselectrow

I want to use AVFoundation for my app to play a mp3 on touch of a UITableViewCell, in didSelectForRow method. I use a plist in my app to get the strings. I managed to make some code and rewriting it. ...
0
votes
0answers
150 views

Programatically load data finto uitableview using predicate coredata as if table has already had row selected

I'm trying to use the excellent code in http://blog.sallarp.com/iphone-core-data-uitableview-drill-down/ to populate fur pop-overs // Override point for customization after app launch ...
0
votes
1answer
199 views

TableView fast multiple touch with Xcode 4

I have a strange problem with Xcode tableViews. If I mash my finger multiple times on the same cell, it will stack multiple touches. In my particular case, I am pushing another view controller, but ...
0
votes
1answer
297 views

Update Core Data on didSelectRowAtIndexPath

Alright, I've been at this for days and can't seem to figure out what I've been doing wrong. What I want is the Core Data to update when a row is selected. I got that down, but then I want the table ...
0
votes
2answers
304 views

Initialize NSMutableArray

Im very new in xcode 3 and i really need help for this I developed my apps using UITableView and XML to showed the content. i had 3 .xib files which it rootViewController , SecondViewController and ...
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
0answers
58 views

Compare existing tableview row number to new tableview row number

I am trying to implement pageCurl or pageUnCurl functionality into a splitviewcontroller app. Basically I need to keep track of which row in a tableView is popping a new view so that it will curl or ...
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
1answer
99 views

Logging a particular row in didSelectRowAtIndexPath

In the method for - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // do stuff here } I have a grouped table view. If I wanted Row 1 of Section 1 to ...
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
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
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
116 views

UITableView becomes slow when switching views

I'm working on an app which has a main menu which then switches views based on the menu item clicked using a UINavigationController. Whenever I run my app and click on an item in the menu, it is a ...
0
votes
1answer
270 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
1k views

Share didSelectRowAtIndexPath selection in an array, between 2 controllers

On my never ending quest to share a table row selection to multiple views loaded in a modal view, I have got it down to one issue. I am using Apples DrillDownSave sample code as a model to recreate ...
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
828 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 ...
-1
votes
4answers
598 views

UITableView row count in didSelectRowatIndexPath

how can i get UITableView row count in didSelectRowatIndexPath.can any one tell me a good way to get it