initWithFrame常用寫法

weixin_34377065發表於2018-04-13

- (id)initWithFrame:(CGRect)frame{

self = [super initWithFrame:frame];// 先呼叫父類的initWithFrame方法

if (self) {

// 再自定義該類(UIView子類)的初始化操作。

_scrollView = [[UIScrollView alloc] initWithFrame:self.bounds];

[_scrollView setFrame:CGRectMake(0, 0, 320, 480)];

_scrollView.contentSize = CGSizeMake(320*3, 480);

[self addSubview:_scrollView];

}

return self;

}

相關文章