views:

32

answers:

2

Interface Builder Question

I know there's a way to change the background color of a table, but is there a way to change the text color?

Please Help

A: 

In your DataSource for the table there is a method that returns the table cells for the table. In effect the method returns a view that you can customize.

Check out:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
Niels Castle
A: 

For the people who are looking for custom cells:

http://icodeblog.com/2009/05/24/custom-uitableviewcell-using-interface-builder/

Nathan