ios 11 导航条titleView问题处理

2018-03-13  本文已影响24人  Mrxiaowang

一:自定义titleHeadView  ,

titleHeadView.h中:

@property(nonatomic, assign) CGSize intrinsicContentSize;

headView = [[titleHeadView alloc]init];

    headView.intrinsicContentSize = CGSizeMake(Screen_Width-100, 28);

    headView.translatesAutoresizingMaskIntoConstraints = false;

    headView.backgroundColor = [UIColor clearColor];

    searchtextFiled = [[UITextField alloc]initWithFrame:CGRectMake(0, 0, Screen_Width-100, 28)];

    searchtextFiled.placeholder = @"请输入搜索关键字";

    searchtextFiled.clearButtonMode = UITextFieldViewModeWhileEditing;

    searchtextFiled.textColor =  [UIColor colorWithHexString:@"969696"];

    searchtextFiled.font = [UIFont systemFontOfSize:13];

    searchtextFiled.borderStyle = UITextBorderStyleRoundedRect;

    searchtextFiled.backgroundColor = [UIColor whiteColor];

    searchtextFiled.returnKeyType = UIReturnKeySearch;

    searchtextFiled.delegate = self;

    [headView addSubview:searchtextFiled];

    self.navigationItem.titleView = headView;

看不明白的可以加我主页的QQ。

上一篇下一篇

猜你喜欢

热点阅读