自定义导航栏

自定义titleView

UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 150, 30)];
[textField setBorderStyle:UITextBorderStyleRoundedRect];
[textField setTextAlignment:UITextAlignmentLeft];
[textField setPlaceholder:@"搜索"];
    
self.navigationItem.titleView = textField;

自定义导航栏右侧按钮

UISwitch *simpleSwitch = [[UISwitch alloc] init];
simpleSwitch.on = YES;
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:simpleSwitch];

 

posted @ 2015-10-28 15:38  zhiupping8  阅读(146)  评论(0)    收藏  举报