自定义导航栏

来源:互联网 发布:js 弹出提示框 编辑:程序博客网 时间:2024/05/18 02:00

自定义右侧按钮

 UIButton * rightBtn = [UIButtonbuttonWithType:UIButtonTypeRoundedRect];

    rightBtn.frame =CGRectMake(0,040,40);

    rightBtn.backgroundColor = [UIColororangeColor];

    [rightBtn addTarget:selfaction:@selector(rightButtonClick)forControlEvents:UIControlEventTouchUpInside];

    UIBarButtonItem * rightItem = [[UIBarButtonItemallocinitWithCustomView:rightBtn];

    self.navigationItem.rightBarButtonItem = rightItem

自定义中间视图

UIView * centerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 30)];centerView.backgroundColor = [UIColor clearColor];self.navigationItem.titleView = centerView;

1 0