How to make a UIBarButtonItem like this

后端 未结 3 1387
無奈伤痛
無奈伤痛 2021-01-14 14:39

How can I make a UIBarButtonItem like this: \"enter

I can\'t find it in the SystemItem

3条回答
  •  隐瞒了意图╮
    2021-01-14 15:10

    The Image button which you have called info button.It's an system button,

    Use below to get it as your rightBarButtonItem

    UIButton* myInfoButton = [UIButton buttonWithType:UIButtonTypeInfoLight]; 
    [myInfoButton addTarget:self action:@selector(InfoButtonClicked:) forControlEvents:UIControlEventTouchUpInside];
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:myInfoButton];
    

    Here is the documentation link to UIButtonType

提交回复
热议问题