當我在導航欄中放置兩個右側欄按鈕時,這兩個按鈕是可見的,但它們有一個頂部邊框意味着我不需要該邊框。導航欄按鈕
我在框架中創建這些按鈕並將該框架分配給導航欄。所以任何人都可以幫助我如何隱藏框架邊框。
我的代碼如下: -
UIBarButtonItem *btnAdd = [[UIBarButtonItem alloc] initWithTitle:@"Add"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(Add)];
UIBarButtonItem *btnEdit = [[UIBarButtonItem alloc] initWithTitle:@"Edit"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(Edit)];
UIToolbar *rightToolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 100, 46)];
rightToolBar.backgroundColor = [UIColor clearColor];
rightToolBar.tintColor = [UIColor colorWithRed:40.0/255.0 green:48.0/255.0 blue:51.0/255.0 alpha:0.0];
NSArray *buttonsRight = [NSArray arrayWithObjects:btnEdit, btnAdd, nil];
[rightToolBar setItems:buttonsRight];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:rightToolBar];
thanx提前。
你可以請提供屏幕截圖或與此相關的一些代碼? – saadnib 2011-04-20 04:33:05