ios,uitabbarcontroller,auto-rotation,shouldstartload
Try to override this method, don't call super - (void)viewWillTransitionToSizeCGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator { //[super viewWillTransitionToSize:size withTransitionCoordinator:coordinator]; [self.selectedViewController viewWillTransitionToSize:size withTransitionCoordinator:coordinator]; } ...
ios,objective-c,webview,shouldstartload
I found a Solution for my Problem. Sublcassing was the right approach but not UIWebView but a own NSURLProtocol. So what I did: Create an own Sublcass of NSURLProtocol @interface MyURL : NSURLProtocol <NSURLConnectionDelegate> Add some standard handling for HTTP-Connections @interface MyURL () <NSURLConnectionDelegate> @property (nonatomic, strong) NSURLConnection *connection; @property...