首页 > 代码库 > 斯坦福 IOS讲义 课件总结 三
斯坦福 IOS讲义 课件总结 三
1,@property (nonatomic,readwrite)NSInteger score;注意这里有一个只读和只写的属性,readonly.
2,重写初始化方法也可以改名字和传参数,(改名一般以initWith开头),
-(instancetype) initWithCardCount:(NSUImteger)count usingDeck:(Deck *) deck;
3,输出控件数组。
@property (strong,nonatomic)IBOutletCollection(UIButton)NSArray *cardButtons;
方法里面可以用for(UIButton* cardButton in self.cardButtons 来控制控件。
4,操作数组基本函数,- (void)addObject:(id)anObject;
- (void)insertObject:(id)anObject atIndex:(int)index;
- (void)removeObjectAtIndex:(int)index; Usually created with [[NSMutableArray alloc] init]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。