Tagged Questions
2
votes
2answers
977 views
Calling (deleteRowsAtIndexPaths) outside of (commitEditingStyle) in Objective-C for the iPhone
I have a custom UITableViewCell that has two custom UIButton's added to it. On one of these buttons I want to be able to delete the cell row from within myMethod().
The method is called by ...
2
votes
4answers
8k views
UITableView Cell IndexPath
Can anyone tell me how can I get a cell IndexPath?
I was saving the IndexPath in the tableView: cellForRowAtIndexPath: method but this only loads when the cell is viewed and I need to know its index ...
1
vote
3answers
129 views
UITableView indexPath section logic
This is the abridged code for my cellForRowAtIndexPath UITableView delegate method:
- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
...
1
vote
2answers
76 views
Decrease indexPath by one
I'm filling a TableView with CoreData.
Until now I was doing something like this:
NSManagedObject *managedObject = [self.fetchedResultsController objectAtIndexPath:indexPath];
...to ...
1
vote
2answers
101 views
how to center uitableview selection with indexpath value
I am saving the indexPath selection from a subview and passing it to the parent view with delegates. When I got back to my subview from my main view I pass the indexPath back to it and show the user ...
1
vote
3answers
348 views
Return NSIndexPath from custom cell ? (UITableView)
I need to get the NSIndexPath for a custom cell in a UITableView. Here's the problem: I send a NSNotification from my custom cell to my UITableViewController when editingDidBegin gets called from a ...
1
vote
2answers
216 views
Customize TableviewCell depending on section
How do I customize the background image of a tableViewCell depending on the section, they are in? E.g. in section one, the cells are supposed to have a green .png image as a background image, whereas ...
0
votes
1answer
26 views
Can't get table detail to show up
I swear I've looked at a half-dozen tutorials and I can't figure out what I'm doing incorrectly. I have a tableview nested within a UIView via IB, and the table both is formatted and populates ...
0
votes
1answer
42 views
IndexPath of a cell when Pinches?
I am finding when tableview is pinched with UIPinchGestureRecognizer declaring at cellForRowAtIndexPath. Now want to find indexPath of a particular cell that was pinched. so i wrote the like this...
...
0
votes
1answer
65 views
Checking and unchecking UITableViewCells with a click of a UIToolBarButton
How can you put a checkmark beside all the cells and remove the checkmark with a click of a UIToolBarButton? Is this possible?
I have tried to iterate through the number of cells loading in the ...
0
votes
1answer
63 views
How to reset the tableview cells accessorytype to none on a click of a button?
I am trying to code a reset button, so that when I click on that button all the tableview cells' accessory type get set to none.
I have a clear concept of how to do it, but I am pretty new to iPhone ...
0
votes
1answer
61 views
Specific uitableviewcell's in section of uitableview
I have this code for each index of my uitableview
if (indexPath.row == 6){
UIImageView *blog = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blog.png"]];
[cell ...
0
votes
2answers
96 views
Delete Row from UITableView Outside TableView Delegate
I am trying to delete a row from UITableview outside the delegate method. I am calling a method when I click a button inside a table cell and trying to delete the row inside that method.
Here is the ...
0
votes
3answers
152 views
NSArray SIGABRT
NSString* year = [self.years objectAtIndex:[indexPath section]];
//get algorithms for that year
NSArray* algorithmSection = [self.algorithmNames objectForKey:year];
NSLog(@"%@", indexPath);
//get ...
0
votes
2answers
100 views
Using indexPath in Table to reference array
I have a large array of data which I am displaying in a UITable. The table is broken into sections alphabetically. When a user selects a cell, I need to figure out where in the array that item is. The ...
0
votes
1answer
116 views
Get UITablieViewCell's indexPath
How can I get the cell's indexpath after I have created the cell? I need to set a uniq cell.tag. Any other idea how I can do that?
- (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
1answer
324 views
how to get a handle on the UITableViewCell given NSIndexPath* iOS
I have the indexPath of type NSIndexPath*,a reference to the tableView, I want to use these to get a handle on the corresponding cell.How dp I do this?
0
votes
1answer
150 views
Can I programmatically modify which UITableViewCell is selected?
Is there a way to move the highlighted tableviewcell programatically. If I wanted to highlight cell number 3 and then highlight cell number 4 instead, based on something the user did in the detail ...
0
votes
1answer
132 views
cellForRowAtIndexPath (need to use one string and one integer values in the indexpath)
Dear all
I am trying to display two different arrays in one tableView.
I declared "years" array as strings and "amount" array as integers.
years amount
e.g: 2012, 2013 .... ...
0
votes
1answer
365 views
Accessing indexPath from custom UITableViewCell
I'm trying to create a UITableView to allow the user to enter data, similar to a lot of the settings UITableViews, with some textfields and callouts to other tableviews for checkboxes. For such a ...
0
votes
1answer
474 views
Dynamic Sections UITableView with Unknown cells
Hey,
I'm basically trying to retrieve data from SQlite db and populate a tableView from it.
The sql-data-retrieval method creates two arrays. "dataArray" and "SectionArray".
DataArray is filled ...
0
votes
2answers
3k views
cellForRowAtIndexPath: crashes when trying to access arrays objectAtIndex:indexPath.row
Recently edited to adapt to some answers and to improve readability
I am loading in data to a UITableView, from a custom UITableViewCell (own class and nib). It works great, until I try to access the ...