如何在iPhone中的UITabBarItem上加载xib

时间:2011-02-24 07:15:38

标签: iphone

我制作了一个自定义工具栏并添加了一个UITabBarItem。现在我想在该按钮点击上加载一个xib。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

将操作提供给该UITabBarItem ...并在此操作中给出您要加载的xib的名称..

-(IBAction)ButtonAction{

//eg:- is shown below   

FreeSetsViewController *viewController =[[FreeSetsViewController alloc] initWithNibName:@"FreeSetsViewController" bundle:nil];


[self.navigationController pushViewController: viewController animated: YES];
[viewController release];

//you will get the required XIB 
}

如果你无法得到它,那么请从已经问过的How to load a Xib.以及Sam Dufel分享给你的链接中获取帮助

祝你好运!