码迷,mamicode.com
首页 > 其他好文 > 详细

重写 getter 方法

时间:2014-09-05 03:25:31      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:重写 getter 方法

//重写callwebview getter方法
- (UIWebView *)callWebview
{
    if (!_callWebview) {
        self.callWebview = [[[UIWebView alloc]init ] autorelease];
        
        //记得添加到view上
        
        [self.view addSubview:self.callWebview];
    }
    return [[_callWebview retain]autorelease];
}

重写 getter 方法

标签:重写 getter 方法

原文地址:http://qccccc.blog.51cto.com/6004423/1548890

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!