美文网首页
#iOS笔记#UIBarItem

#iOS笔记#UIBarItem

作者: MAXcrazs | 来源:发表于2020-05-10 17:37 被阅读0次

UIBarItem *item = [UIBarItem alloc];
item.title = @"title";

UIBarItem是一个抽象类,没有实现title属性的get和setter方法,开发过程中也不会被直接使用。

创建继承UIBarItem的子类,并实现title和image的Getter和Setter方法

.h

@interface CustomBarItem : UIBarItem
@end

.m

@implementation CustomBarItem
@synthesize title;         // 由系统生成title和image的set get方法
@synthesize image;
@end

相关文章

网友评论

      本文标题:#iOS笔记#UIBarItem

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