0

私はiPhoneの初心者で、ツールバーに設定されたすべてのボタンを同じサイズで作業していますが、提案とソースコードを教えてください

4

1 に答える 1

0

NSMutableArray を作成して 5 つの UIBarButtonItem を配置し、必要に応じてプロパティを設定してから、この配列を ToolBarItems に次のように設定する必要があります。

NSMutableArray *buttonsArray = [[NSMutableArray alloc] init];
UIBarButtonItem *myButton1=[[UIBarButtonItem alloc] style:UIBarButtonItemStylePlain target:self action:@selector(toolbarButtonPressed1:)];
[buttonsArray addObject:myButton1];
//here you set the other properties for your first button

// and then you do the same for your other buttons


[self setToolbarItems:buttonsArray animated:YES];

もちろん、前に ToolBar を宣言する必要があります:)

于 2012-05-11T08:56:19.137 に答える