美文网首页iosiOS_UIKit
UIBarButtonItem导航按钮

UIBarButtonItem导航按钮

作者: 絮语时光杨 | 来源:发表于2018-05-14 10:38 被阅读1次

初始化方法

  • (nullable instancetype)initWithCoder:(NSCoder *)aDecoder NS_DESIGNATED_INITIALIZER;
  • (instancetype)initWithImage:(nullable UIImage *)image style:(UIBarButtonItemStyle)style target:(nullable id)target action:(nullable SEL)action;
  • (instancetype)initWithImage:(nullable UIImage *)image landscapeImagePhone:(nullable UIImage *)landscapeImagePhone style:(UIBarButtonItemStyle)style target:(nullable id)target action:(nullable SEL)action NS_AVAILABLE_IOS(5_0); // landscapeImagePhone will be used for the bar button image when the bar has Compact or Condensed bar metrics.
  • (instancetype)initWithTitle:(nullable NSString *)title style:(UIBarButtonItemStyle)style target:(nullable id)target action:(nullable SEL)action;
  • (instancetype)initWithBarButtonSystemItem:(UIBarButtonSystemItem)systemItem target:(nullable id)target action:(nullable SEL)action;
  • (instancetype)initWithCustomView:(UIView *)customView

相关文章

网友评论

    本文标题:UIBarButtonItem导航按钮

    本文链接:https://www.haomeiwen.com/subject/cdsddftx.html