Tagged Questions
0
votes
1answer
20 views
How to disable first section in tableview?
How can I get rid of the first sectionBar here, right above the 'Home' ?
0
votes
2answers
17 views
adding UITableViewCell programmatically to UITableView
I have created a custom UITableViewCell programmatically and wish to add it to a UITableView of UITableViewController created in IB, can you please help me with the code to do that
Thanks
0
votes
1answer
27 views
UITableViewCell - registerNib subclass not finding nib as subview
In the viewDidLoad in my UITableView I am calling:
[self registerNib:[UINib nibWithNibName:@"MyCell" bundle:nil] forCellReuseIdentifier:@"MyCellRI"];
Then in the cellForRowAtIndexPath I have the ...
0
votes
1answer
22 views
NSInternalInconsistencyException for UITableView when using UICollectionView?
I was trying to insert items into a collection view with this code:
- (IBAction)addCards:(UIButton *)sender {
int numberOfCardsToAdd = EXTRA_CARDS_NUMBER;
if ([[self.collectionView ...
0
votes
1answer
22 views
Pre-poulating UItableview with Core Data
Core Data is a new concept for me, though I am familar with SQLite. I am trying to find a tutorial about how to populate a table onload with data from core data. I am creating a database with hundreds ...
0
votes
1answer
31 views
Loading a table view (inside a view controller) with SQLite information
I have a view that is inserting information into the database. This view displays that information inside a table view (top half of view is being used for something else)
I have the view controller's ...
0
votes
2answers
51 views
Xcode create textfield in UITableViewController [duplicate]
I'm trying to make a tableview in which a user can enter data into it. I want it to look almost identical to the contact app on the iPhone when you are creating a new contact.
I posted my code ...
0
votes
2answers
50 views
Using image as background for static table view with storyboards
I'm creating a tabbar application without storyboards and instead created a storyboard for one of my tabs. I have a UITableViewController with a static table view. I also have it embedded in a ...
2
votes
3answers
71 views
How can I get my Table View in xcode 4.6 ios6 working?
I realize there are many posts like mine, but I still can't get the code working. Any help would be greatly appreciated.
I don't have all of the methods I want to implement implemented, so dont' ...
0
votes
1answer
63 views
how to Change width of uitableviewcell so that it looks like left or right aligned in chat application
I am implementing chat application and I want to change width of table view cell in chat application so that sender can see his messages left aligned and receiver can see his messages right aligned.
...
-3
votes
0answers
21 views
Storyboard - TableView CostomCell wird nicht angezeigt [closed]
Hallo brauch dringend Hilfe bei folgendem Problem,
ich versuche gerade in meinem Programm via Button
eine im Storyboard generierte Prototyp TableView und Prototyp CostomCell
zum laufen zu bekommen ...
0
votes
2answers
42 views
How to use user input from UITextField to add a new UITableViewCell with an image?
I am becoming increasingly frustrated as I can not figure out how to get this to work.
I have searched and searched and nothing seems to be helping me out to get this to do what I want.
What I am ...
-3
votes
0answers
26 views
Links not recognized in TableView [closed]
So I made a scroll view sing storyboard, and I put in a bunch of email addresses and names. However, when I build and simulate the app, links only show up for the first cells you can see-scroll past ...
0
votes
2answers
27 views
Change mass UITableView background dynamically, but how?
I have a lot of UITableViewControllers, and I want to have custom background color, and I don't want to copy this to all TVC:
self.tableView.backgroundColor = [UIColor clearColor];
...
0
votes
1answer
46 views
How to load/show more than 100 cells(rows) in uitableview or retrieve latest messages in uitableview
I am making chat application in which want to retrieve latest messages in table cells/rows.If messages are less than 100 then i can able to retrieve latest messages in table view but when message ...