如何在相同尺寸的工具栏中设置五个按钮?

时间:2012-05-11 08:47:41

标签: objective-c

我是iPhone的初学者我已经处理了相同大小的工具栏中的所有按钮设置给出了任何建议和源代码

1 个答案:

答案 0 :(得分: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:)