是否有可能在IPad中的UITabBar中添加按钮?

时间:2011-01-12 09:02:03

标签: ipad uibutton uitabbar

我想知道是否可以在iPad上的UIButton中添加UITabBar。如果是的话,请告诉我。

1 个答案:

答案 0 :(得分:1)

如果你看一下@Kyle the Unruly建议的文档,这是非常直接的。

以下是添加内置按钮和您自己的图像的示例:

UIBarButtonItem * viewSnapShotButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera target:self action:@selector(snapShotButtonPressed:)];
UIBarButtonItem * fontButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"Font.png"] style:UIBarButtonItemStylePlain target:self action: @selector(fontSize:)];

// Add buttons to the tab bar
NSMutableArray *topCentreItems = [[NSMutableArray alloc] init];
UITabBar *topCentreTabBar = [[UITabBar alloc] initWithFrame:CGRectMake(0, 0, 120, 75];
[topCentreItems addObject:viewSnapShotButton];
[topCentreItems addObject:fontButton];
topCentreTabBar.items = topCentreItems;