Reputation: 171
Please clear this scenario.
I created a viewController named RootViewController,so obiviously we'll get RootViewController.h and RootViewController.m
Then i created a nibfile named ViewScreen.xib by selecting a newFile named viewXib, so automatically we'll get a View in the xibfile.And i linked FilesOwner class to RootViewController.
so if i want to set the back ground color of the view as "groupTableViewBackgroundColor" ,can't i set that in attributes inspector,is the only way to set that color to view is by doing manually in RootViewController.m(declaring a view and setting view.backgroundColor=[UIColor groupTableViewBackgroundColor]; can't we do the same by using interfaceBuilder.
if any one is interested to solve this ,please go on.
Upvotes: 0
Views: 410
Reputation: 52565
If you change the colour palette to "Developer" you'll find the list of system colours, including the background colour for tables.
Upvotes: 2