iphone开发——小技巧

来源:互联网 发布:马云的淘宝靠什么赚钱 编辑:程序博客网 时间:2024/06/06 13:56

1、在销毁UIWebView对象之前,如果有设置任何delegate,则需要先将delegate置为nil。(ps:印象中还有一个对象的delegate的属性是retainde ,暂时不记得是哪个了)

//Important: Before releasing an instance of UIWebView for which you have set a delegate, you must first set the UIWebView delegate property to nil before disposing of the UIWebView instance. This can be done, for example, in the dealloc method where you dispose of the UIWebView.
   

 

2、网络活动指示标志:

[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;

 

3、Important: You should not embed UIWebView or UITableView objects in UIScrollView objects. If you do so, unexpected behavior can result because touch events for the two objects can be mixed up and wrongly handled.

原创粉丝点击