Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

How to Add UITabBarSystemItemContacts in StoryBoard

Without StroyBoard we use initWithNibName Method to add System Icons to Tab Bar Controller. I found the sample below


- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil

{

self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];

if (self) {

// Custom initialization

self.tabBarItem = [[UITabBarItem alloc]initWithTabBarSystemItem:UITabBarSystemItemContacts tag:1];

}

returnself;

}


But if I am using StoryBorad, Under Which Method I have to implement this instead of initWithNibName since there is no nib files. Please help me if there any sample.


Thanks

iPhone 4, iOS 5.1

Posted on Jul 29, 2012 8:11 PM

Reply

There are no replies.

How to Add UITabBarSystemItemContacts in StoryBoard

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.