摘要: 自定制一个继承于UIView的类然后重写initWithFrame方法;如下 - (id)initWithFrame:(CGRect)frame { self = [super initWithFrame:frame]; if (self) { // 菊花背景的大小 self.frame = CGR 阅读全文
posted @ 2017-01-18 16:47 孙富有(iOS工程师) 阅读(3506) 评论(0) 推荐(0)
摘要: //网页视图 _webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 64, mWidth, mHeight-64)]; _webView.delegate = self; [self.view addSubview:_webView]; / 阅读全文
posted @ 2017-01-18 16:43 孙富有(iOS工程师) 阅读(1806) 评论(0) 推荐(0)