2
我想知道是否可以在iPad上添加。如果是這樣,請讓我知道。是否有可能在iPad中的UITabBar中添加按鈕?
我想知道是否可以在iPad上添加。如果是這樣,請讓我知道。是否有可能在iPad中的UITabBar中添加按鈕?
如果你看@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;
有你看着的UIBarButtonItem http://developer.apple.com/library/ios/ipad/#documentation/uikit/參考/ UIBarButtonItem_Class /參考/的reference.html – Kyle 2011-03-28 23:48:51