initWithFrame常用寫法
- (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;
}
相關文章
- js常用寫法JS
- Elasticsearch常用寫法Elasticsearch
- java常用寫法Java
- 常用CSS縮寫語法CSS
- 翻轉連結串列常用寫法
- 【LaTex、markdown】常用語法寫出漂亮的blog
- css的三種常用寫法是什麼CSS
- .md,markdown檔案的基本常用編寫語法
- 使用 nodejs 寫爬蟲(一): 常用模組和 js 語法NodeJS爬蟲
- 使用 nodejs 寫爬蟲(-): 常用模組介紹和前置JS語法NodeJS爬蟲
- saltstack常用語法
- markdown 常用語法
- 常用MySQL語法MySql
- Perl常用語法
- markdown常用語法
- shell if 寫法
- css寫法CSS
- 自定義tableViewCell,程式碼入口為-initWithStyle:或者-awakeFromNib, 不能是-initWithFrame:View
- JS常用簡寫技巧JS
- JS 常用簡寫技巧JS
- python 常用的語法Python
- vue 常用語法糖Vue
- Golang常用語法糖Golang
- 031、Vue3+TypeScript基礎,路由中to的字串寫法和物件寫法2種寫法VueTypeScript路由字串物件
- Laravel Policy 寫法Laravel
- Inner join 寫法
- Mybaties 特殊寫法BAT
- 前端常用手寫程式碼前端
- Markdown 常用簡明語法
- 【Linq】常用語法彙總
- markdown 16大常用 語法
- MongoDB 常用查詢語法MongoDB
- ES6常用語法
- MySql 常用語法彙總MySql
- Python語法—讀寫Python
- 返回頂部寫法
- Linq 綜合寫法
- shell 指令碼寫法:指令碼