0
votes
1answer
6 views

UITableView doesn't reload on model change with NSFetchedResultsController

Got a problem logically deleting an object from table view. Idea is to set a flag to an item like "deleted" to 1 if item shouldn't be shown. Loading data predicate shouldn't load such rows. Code with ...
0
votes
1answer
51 views

reloading a uitableview starts at the 2nd row (or not at the first row)

Uitableview problem again. Whenever I reload my data, the tableview would reload but it seems like the data will not start at the first row. Please refer to the image below. I tried the following ...
0
votes
2answers
27 views

UITableViewController, scroll boundries off when adding objects

Im working on an iphone project with storyboards in Xcode, and I have a tableview that lists cells loaded from an array it owns. Through push segues I load 2 other views for adding an item to the ...
1
vote
2answers
540 views

reloadData not working for UITableView inside another UITableView Static Cell

I have a UITableView with static cell that contains another UITableView which is not being updated when I call reloadData. Using ios5. When I run the code below, the subViewTable displays the ...
0
votes
1answer
428 views

UITableView reloadData not updating UI, only after restart

Running into a strange problem: I have a TableViewController (call it recent tab) that is one of the tabs of a UITabBarController. I have items getting saved into sandbox (documents folder) in the ...
0
votes
1answer
177 views

Reload data of table view subobjec of uiviewcontroller with tableview

i've a class SelezionaProfilo, in this class i've a list of players: @interface SelezionaProfilo : UIViewController < UITableViewDelegate, UITableViewDataSource > { UITableView ...
0
votes
0answers
215 views

How to increase UItableview height after it is loaded

I want to increase the table height of UItableview after it is loaded. What I am doing is that I have one array and I fetch 10 data from coredata. In the bottom of the table I have load more button ...
3
votes
1answer
449 views

Reload table view in real time

The app receives a UILocalNotification, but if the user is at the UITableViewController at the fire time, the table view (containing the scheduled notifications) does not reload. The user has to get ...
0
votes
1answer
282 views

tableView property with UIViewController (or UITableViewController)

#import <UIKit/UIKit.h> @interface FourthViewController : UIViewController{ //@interface FourthViewController : UITableViewController{ I want to update my tableview so I trying to use ...
0
votes
0answers
160 views

UITableView keeps old cells on [self.tableView reloadData]

I have a Split View application. When some data is input into fields in the Master View Controller I update the model (shared by Master and Detail View Controllers) and then Master VC asks Detail VC ...
0
votes
1answer
499 views

Objective C - Correct way to empty and reload UITableViewController with NSMutableArray

I have a UITableViewController which uses a NSMutableArray for it's datasource. The array is initially populated in the viewDidLoad method by calling a web service to retrieve the data and populate ...
0
votes
1answer
1k views

how do you overload the UITableView “reloadData” method in a UITableViewController?

how do you overload the UITableView "reloadData" method in a UITableViewController? e.g. to put a log statement to see/confirm when reloadData is being called on each of my UITableViews
0
votes
1answer
628 views

how to trigger update of a custom UITableViewCell after returning to view via back button?

Background have a custom UITableCellView in which I'm using a custom UITextField that I've added as a subview (i.e. not using normal UITableCellView views in the scenario is pressing on the cell => ...
0
votes
1answer
2k views

reload tableView data placed in a tabBar

i've a tabBarController, in one tab i've a navigation controller that manage a table view. TableView works, but if in my viewWillAppear of the tableVieW class i add [self.table reloaddata]; ...
0
votes
1answer
181 views

Reloading tableView when subclassed causing crash

Hey guys! I have some problems reloading my tableView. I have subclasses my tableView, with a class called RadioTable. I have also subclasses my TableViewCells, but thats not important here. I need ...
0
votes
2answers
172 views

Iphone reload tableview after a purchase has finished gives odd error. “ error: expected ':' before '.' token”

Guys I'm using the code below. Xcode refuses to compile the last line. I get: "error: expected ':' before '.' token" on the last line. Can't figure out what is wrong... - (void) failedTransaction: ...
5
votes
5answers
3k views

UITableView reloadData - cellForRowAtIndexPath not fired

I have splitViewController which has as MasterViewController some viewController and as DetailViewController some tableViewController. When I push a button on masterViewController I want to show new ...