1
vote
2answers
17 views
iPhone SDK: How/when should I release a UITableView delegate object?
I am using a custom class as the delegate and datasource on a UITableView. I'm doing (something like) this in my viewDidLoad method:
MyClass *myObject = [[MyClass alloc] init];
t …
0
votes
2answers
17 views
TableView oval button for Index/counts
Can someone help me create an index/count button for a UITableView, like this one?
Is there an Apple example, or other tutorial? Thanks, Jordan
1
vote
2answers
27 views
Setting variable UITableViewCell height
I am using a custom UITableViewCell, which has some labels. There is one label in the cell where the string length is variable, due to this i cannot set a constant height to the ce …
0
votes
3answers
40 views
Is it possible to preload all the cells in a uitableview?
Is there a simple way to preload all the cells in a uitableview?
I need to do this in order to change whether or not all the cells are checked. If I just use cellForRowAtIndexPath …
0
votes
0answers
13 views
Replace Xcode’s Navigation template UITableViewController with a UIViewController and UITableView
Is there any simple way to replace a UITableViewController from Xcode's "Navigation based application" with Core Data with a UIViewController containing a UITableView?
I'm looking …
0
votes
1answer
20 views
Is it possible to get array of all index paths for the cells in a UITableView?
Is there a simple way to get array of all index paths for the cells in a UITableView?
-1
votes
4answers
50 views
tableView reloadData doesn’t work
For some reason, [self.tableView reloadData]; just wont work.
In my .h file I have:
@interface SearchOptions : UIViewController <UINavigationBarDelegate, UITableViewDelegate, U …
0
votes
2answers
49 views
How can I set all cells in a tableView as checked or unchecked?
I have a checklist in a UITableView and I have a UISegmentedControl with "Select All" and "Deselect All" options.
I am wondering how I can reset all the cells while viewing the ta …
0
votes
4answers
38 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 con …
0
votes
1answer
27 views
Simple list of sub category
I have a plist with categories :
<array>
<dict>
<key>part</key>
<string>up</string>
<key>house</key>
<array>
<dict&g …
0
votes
1answer
40 views
Best idea for importing text to each NavigationController View
Hi everyone i want build a poem application so i want use to NavigationControlle for show each poem ! i mean i have a TableView and on there + 50 poems !
each cell have different p …
0
votes
2answers
33 views
Relative Height of UITableview
In RootViewController am using a UITableView for displaying the content of data. In the didSelectRowAtIndexPath method, I am calling another view controller (DetailViewController) …
0
votes
1answer
13 views
How to do filtering data in UITableView like ‘Recents’ view in Phone application?
Hi, everyone.
I am planning to applied the feature like 'Recents' view in Phone application of iPhone. This view show option on the top, 'All' and 'Missed'. Default option is 'All …
0
votes
2answers
33 views
How to hide and show the label inside a table?
I have 3 tables called radio, song, and artist controlled by favorite.
Now I want to display different text for each table when there is nothing inside the table. But I want the te …
3
votes
4answers
87 views
New to Core Data for iphone
I am new to the iphone platform and am creating an app that retrievals a rss feed and displays it in a UITableView. I have gotten this working perfectly (or rather, the way I wante …
