I\'m embedding this web site into my app like this:
NSString *url = [NSString stringWithFormat:@\"https://mobile.twitter.com/search?q=%@\", @\"@test OR #tes
After changing the property to "strong" reference, my problem disappeared.
strong
before:
@property (nonatomic, weak) IBOutlet UIWebView *webView;
after changing the property to "strong":
@property (nonatomic, strong) IBOutlet UIWebView *webView;