ipad

How to apply all orientation in iPad application

Hello, Can any one tell us "How to Change our view in all orientation" in iPad application means autorotation. If this is possible can give sample example with source code. Thanx... ...

Problem with a class BlogRssParser.m (iphone)

I want to change the feed source... the code is: // // BlogRssParser.h // RssFun // // Created by Imthiaz Rafiq on 8/15/09. // Copyright 2009 __MyCompanyName__. All rights reserved. // #import <Foundation/Foundation.h> @class BlogRss; @protocol BlogRssParserDelegate; @interface BlogRssParser : NSObject { BlogRss * _currentI...

iphone - running app on 3.1 with iAd framework

Hi, I built my app in iOS 4.1 and the app has iAd Framework. But I want to set deployment target as 3.1 so that app runs perfectly on older iPhone devices as well. To add iAd Banner view, I'm used IB and added the ads to my app. How can I make my app run on older iPhone OS and on Ipads. ...

How to implement a corner page curl UI?

I have an app with two full-screen views, one on top of the other. I would like to show the corner of the top view curled slightly away, and allow the user to curl it away more until the view underneath is completely showing. The user should be able to interact with whatever part of the view underneath is exposed, and with whatever part...

iPad form creation?

I would like to create a form in my iPad application which is very similar to the form used when setting up the Cellular Data Account on the iPad. That is, it collects User Information, Payment information, and other information from the user in a modal view across multiple steps. Is there a good tutorial out there for creating this ty...

UISplitViewController not showing right view?

I am making my app for 3.2 but I recently started trying the new SDK 4.2beta2 and my app does not shows the right view. Is just black. I checked and the splitViewController is indeed loading the right controller and the object is on memory but is not shown. I wonder if someone has experienced the same problem and/or where to start look...

Ipad landscape splash won't show

I'm trying to set a Landscape splash for my iPad app but it's not working. I currently have a Default-Landscape.png and a Default-Portrait.png. I added the four orientation in my plist file and still nothing. It works if I launch in portrait, but if I launch in Landscape the screen stay black until my app start. Is there anything els...

SWF to HTML5 or iPad compatible format

Hey, Is there any SWF to HTML5 converter or any format which can run on the ipad? not smokescreen... other alternatives.......? THANKS! ...

Some images not loading on Iphone 3gs\ipad?

I recently rewrote a flash gallery to html/js here: http://susanzbreyer.com/gallery.html The problem is that on iphone 3gs and ipad some of the images on the last tab do not load, and just show a blue box with a question mark. It works on every desktop browser, iphone 4s, android phones, etc. Does anyone know what might be causing thi...

IPAD navigation issues

I have an iPad application that has one toolbar on the top with 1 segmented control button with two options. When you select one of the options, a view is loaded So the MainViewController.m has the following code: FirstSegmentView *fv = [[FirstSegmentView alloc] initWithNibName:@"FirstSegmentView" bundle:nil]; self.firstSegmentViewContr...

OpenGL ES, How to manipulate texture content on the fly

I have an iPad app I am working on and one possible feature that we are contemplating is to allow the user to touch an image and deform it. Basically the image would be like a painting and when the user drags their fingers across the image, the image will deform and the pixels that are touched will be "dragged" along the image. Sorry if...

How do I get a dropdown list by selecting a button on iPhone?

I am new to iPhone. I need to get a dropdown list by selecting a button and the action should be done on the same page for the button we have clicked in the list. In this way there contains more than one button on the top of the page as in banks we used to see. ...

iPad MPMoviePlayerController Aspect Ratio Button closes movie

Hi all. I am loading up a video file in an iPad application using the MPMoviePlayerViewController. Basically, click the button, watch the video. It works great, unless you press the "Aspect Ratio" button (the one which looks like two arrows) which normally sets the video to autofit. In this case, it just closes the movie, and procs a MP...

sdk 3.2,MPMovie PlayerViewController after press done btn, it go to blank page

-(IBAction)play{ NSString *url = [[NSBundle mainBundle] pathForResource:@"mm_v0" ofType:@"mp4"]; NSLog(@"Filepath is: %@",url); MPMoviePlayerViewController *playerViewController = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL fileURLWithPath:url]]; [[NSNotificationCenter defaultCenter] addObserver:self ...

webkit css3 Column text selection

Iam using the column layout model of css3 to view content in a UIWebView (iPhone/iPad), I would like to programmatically select and copy the content of each column and paste it in another view, is there way to achieve this? ...

Fast and Lean PDF Viewer - tips and hints?

There has been many Questions recently about drawing PDF's. Yes, you can render PDF's very easily with a UIWebView but this cant give the performance and functionality that you would expect from a good PDF viewer. You can draw a PDF page to a CALayer or to a UIImage. Apple even have sample code to show how draw a large PDF in a Zooma...

how to get an movable pin on a mkmapview iphone or ipad ?

hello, iam developing an app where user will select his region, to select his region we need to display an colored pin which is movable , then ill fetch the respective lat long. how can i get movable pin on my map overlay using code . thanks Kumar Y R ...

css problem on iPad with table border

I have a css problem when the html page is rendered on iPad. Everything works good in other browsers. The problem is that I get a small space between the cells in my tables as you can see in the picture: http://oi53.tinypic.com/2vl0as9.jpg If I zoom in the page maximum on the line between the cells, it dissappears.. So it must be some k...

Problems with div vertical scrollbars on iPad

When a user perform a search on my website I want to show the result in a small div with vertical scrollbars instead of that the user need to scroll the full page. That works perfect in all browsers BUT I get problems on the iPad. I can see that the search result doesn't fit into the div but no scroll bar is showing up on the iPad. Also ...

getting lat long from mapView iphone ?

hello, all , iam developing an ipad app that uses mapview to display google maps, my problem was how to get lat long of a perticular region, some how i manged to get by putting an overlay on the map view and getting point of that view , then converted to lat long. now my problem is i want to show an movable pointpin on the view so that ...