iOS How to show URL in UIWebView in iPhone/iPad/iPod AasimNaseem, January 26, 2011May 5, 2025 Hi everyone! Below is a small code to display contents over UIWebView. Assuming that you have declared a UIWebView in your header file; in my case it is detailWebView. [code] NSString* str = @"http://www.yahoo.com"; NSURL* url = [NSURL URLWithString:str]; [self.detailWebView loadRequest:[NSURLRequest requestWithURL:url]]; [/code] That’s it; keeping user interaction and multi-touch… Continue Reading
iOS Not enough frames in Stack – iO| AasimNaseem, January 10, 2011May 5, 2025 If you are getting this error message in your console while running your app on iPhone/iPod (specially on 1G, having ios < 3.2) [code] dyld: Symbol not found: _OBJC_CLASS_$_UIPopoverController Referenced from: /var/mobile/Applications/5BC198AF-22AF-4581-8787-E267D359E059/FilesAnyWhere.app/<your_app_name> Expected in: /System/Library/Frameworks/UIKit.framework/UIKit in /var/mobile/Applications/5BC198AF-22AF-4581-8787-E267D359E059/FilesAnyWhere.app/<your_app_name> <em>Data Formatters temporarily unavailable, will re-try after a 'continue'. (Not safe to call… Continue Reading
iOS MonoTouch: Building iPhone Apps Using C# and .NET AasimNaseem, September 25, 2009May 5, 2025 Novell has released MonoTouch 1.0, what it claims is the industry’s first solution for developing applications for the iPhone and iPod Touch using the Microsoft .NET Framework, including C# and other .NET programming languages. Until now, developers primarily built iPhone applications using C and Objective-C. With MonoTouch, the creativity of millions of… Continue Reading