2011年11月17日 星期四

Stanford CS193p Fall 2011 Note-02

直接從 UI 新增 property 的方式:
=> 按住 "control" , 點選 UI 上的元件(在此為 UILabel), 將其拖拉到
      對應的 Controller.h 程式區塊內放開.




-----------------------------------------------------------------------------

直接從 UI 新增 action 的方式:
=> 按住 "control" , 點選 UI 上的元件(在此為 UIButton), 將其拖拉到
      對應的 Controller.m 程式區塊內放開.



-----------------------------------------------------------------------------

@synthesize 的對象為物件時, 通常可以藉由更改其 getter 來作初始化的動作.
ex:

@property (nonatomic, strong) NSMutableArray *operandStack;
....
@synthesize operandStack = _operandStack;
....

- (NSMutableArray *) operandStack
{
    if (_operandStack == nil) {
        _operandStack = [[NSMutableArray alloc] init];
    }
   
    return _operandStack;
}

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。