Ipad app with two UIWebViews
I have an iPad app with two UIWebviews, one on top of the other. Is there a way to have all the links that are clicked in one, open in only the other view? ...
I have an iPad app with two UIWebviews, one on top of the other. Is there a way to have all the links that are clicked in one, open in only the other view? ...
I'm compiling in a local version of the SBJson library into my iPad project. I just started linking in a static .a library that has compiled symbols that collide with objects in the SBJson library. I am able to modify the SBJson library, what is the best way to modify it to avoid the name collisions? ...
I've been struggling with this for weeks now. On the iPad so 3.2. Using UIWebView (so internal YTYoutubeView which I assume is an MPMoviePlayer instance) to show Youtube videos embedded. Whenever I play multiple videos, the app eventually crashes with low memory, even though every time I run this thru Instruments it crashes around 6...
Here's a screenshot of keynote on the ipad: The toolbar is pretty flat - it doesn't have a vertical gradient the way the builtin toolbar styles do. I've played with the different styles, the translucent flag, and the tint color, and haven't been able to replicate it. How are they doing this? How would I implement it? ...
I'm having a nightmare with the rotation on iPad. I've searched all over the place for some tutorials, but nothing seems to really be for what I want. (Possibly not searching for the right thing?!) I have a portrait view by default which is an image and a button inside the view. When I rotate, I detect this can work out if it's landsca...
I have this code in my TNApplicationDelegatePad class: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; splitViewController = [[UISplitViewController alloc] init]; TNFeedListViewController...
I have an iPad UIWebView which has to display some rtfd.zip files. I try to do it like this: -(void) viewWillAppear:(BOOL)animated { [self loadFile:string]; } - (void)loadFile:(NSString*)file { NSString* resourcePath = [[NSBundle mainBundle] bundlePath]; NSString* sourceFilePath = [resourcePath stringByAppendingPathComponent:file];...
Is there a way to programmatically force the virtual keyboard to appear when there is a bluetooth keyboard connected to the iPad? I have a bluetooth barcode scanner connected to the iPad, which acts as HID (keyboard). The problem is, the virtual keyboard stays hidden in my app. Is there any way I could force the virtual keyboard to show...
I'm working on an universal iPhone app, but a few user settings don't make as much sense on the iPad. Can I specify a separate Settings.bundle or Root.plist for use on the iPad? Thanks. ...
I am fairly new to Objective C and iOS programming but am constantly trying to learn as much as I can. I am about to start an iPad project which will involve storing large amounts of data which will need to be exported to one extremely large excel spreadsheet.(it's for a friend....they currently enter massive amounts of data into excel ...
In a movie player, i can use mpVolumeView to control the volume.Is there any other way to control it ? ...
I originally wanted to make a universal app, but now scopes have been changed and I am stuck with a universal app, now all I want is an iPad app. So I went and changed the Targeted Device Family to just 'iPad' (or 2) but when I submit the app it claims I am still stuck in Device Family '1,2' or Universal, and is asking for iPhone screen ...
As i know,MPVolumeView can add to my app for changing volume.But now i want to control volume with a custom slider. Maybe i can fit it myself if MPVolume was a subclass of uislider,indeed,it is a subclass of uiview. Ask for advices to realize my idea,thank you very much. ...
I'm developing a simple html-form for the ipad safari. You can tab through the inputboxes via the "next" button on the touch keyboard. Unfortunatly one input box should have it's own "keyobard" (a spinnig wheel). Is there any chance to hide the keyboard for this special input? ...
Hi, I am trying to develop an ipad application to read ePub files.please provide any sample code ...
Hi! I need to implement drag and drop for Ipad. I tried this solution: http://www.gotproject.com/blog/post2.html But since I am using JQuery myself, it conflicts and does not work. How can I use JQuery drag and drop for IPad? ...
I'm generating some inline images for an email sent from the iPad. Looks great in all desktop email clients, but gmail doesn't seem to like the base64 image and it shows up as text. Anyone have any luck embedding images with base64 and gmail? Or know of a better solution for sending HTML emails with images from the iPad? ...
Hi Folks, I have an iPad application which has portrait and landscape mode. The default behavior of the application is portrait. I am capturing the orientation thru device orientation. I have a variable to catch the x,y,height and width of the application on rotation. But it prints the same value all the time. Same value on each rotat...
I am developing an iPad application and I need to represent tree structure (a simple tree structure which has root, parent and child nodes) on iPad. Is there a final solution for such kind situations, like TreeView? ...
I'm working with a UITableView. I'm using a web service to get the array contents. Can anyone get me any samples to do these kind of application. I don't know how to use the web service and to list it out in the table view. ...