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