ipad

iPad numeric keyboard

I've been trying to get a numeric keypad on the iPad, but when I set a numeric pad on a TextField, I get a normal keyboard with numbers and ponctuation. But I found out several bugs on the simulator, I don't really know if this is another. Is there a standard keypad on the iPad? ...

Applying user-entered data in one view to a second view

I'm trying to write an iphone OS app that includes a logbook feature. The problem that I'm having is that I want each new logbook to have its own categories that are user-defined, for example a chemical receipt log would have chemical name, vendor, receipt date, expiration date and comments. The way that I'm trying to go about this is ...

iPhone/iPad : Check for invalid characters in a textbox made for Integers only

I noticed that the iPhone OS is pretty good about picking out Integer values when asked to. Specifically, if you use NSString *stringName = @"6("; int number = [stringName intValue]; the iPhone OS will pick out the 6 and turn the variable number into 6. However, in more complex mistypes, this also makes the int variable 6: NSStrin...

iPhone - how to store documents consisting of multiple images?

My iPhone (actually, iPad) app creates documents that consist of several images, plus a bit of metadata. What's the best practice for storing these sorts of documents on disk? I see two main options: Create a folder for each document, and store my images as separate PNG files within the folder (plus another little file for the metada...

Why in landscape orientation in simulator all the subviews appear out of order?

I was doing a sample app in ipad. I added about 4 to 5 imageviews to the left side of the view vertically. This view will appear when we select the corresponding entry in the splitviewcontroller. In ipad simulator too, all the images were loading and all are working fine in portrait orientation. But when I rotate the simulator to lands...

Play youtube video in full screen ?

Hi all, First of all sorry, If somebody finds this question is repeated (haven't found any by myself). I am developing for an iPad application and trying to play youtube videos using this code: NSString *embedHTML = @"\ <html><head>\ <style type=\"text/css\">\ body {\ background-color: transpare...

Date and time wise Sort nsmutablearray

Hello everyone, i have one problem when i sort the NSMutablearray using date and time wise. Does anyone have idea how can i sorted array date and time wise Thanks in advance ...

iPhoneOS SDK - Remove Corner Rounding from views (iPad problem)

Hi Guys This might be a little bit picky, but in the iPad SplitViewController setup, there are 2 views. Each of the views has a very small black corner rounding. (This is probably the same with iPhone apps too). This rounding is visible in the image below. What I would like to do is remove the black rounding, so the UI doesnt get these ...

ipad - dismissing a UIPopoverController

I have a button inside the content of a UIPopoverController. This button runs a method called myAction. MyAction has the form - (void) myAction:(id)sender so, myAction receives the id of the caller button. Now, inside this method I would like to dismiss the UIPopoverController, but the only thing I have is the ID of the caller butt...

Is the iPad "page turn" transition included in the SDK?

Is there a "page turn" transition included in the iPad SDK that I can use? Or is that all coded by hand with core graphics? ...

UINavigationController leftbutton problem

Hello guys! Here's my code: UIBarButtonItem *leftButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(rightButtonPressed)]; [self.navigationItem setLeftBarButtonItem:leftButton]; [leftButton release]; The 'self' class is inherited form an UINavigationController and is I ...

UISplitViewController change master and details view form details view

I have implemented UISSplitViewController with a master and detail view as per the documentation. I would like to select an item from the tableview (didSelectRowAtIndexPath) in the current details view, then switch the master view (rootviewController ) with the current detail view and switch in a new detail view. Is this possible ? ...

iPad App submission error

The binary you uploaded was invalid. When supporting iPad only, the iPhone OS Deployment Target must be 3.2. What is this??!?!?!?! This happens everytime I try to upload my binary file to iTunes Connect ...

best-practice to display flash on Iphone / Ipad ?

Hi, I have a website that uses flash. I would like to convert the website so that iphone / ipad users can see my website. I understand that Iphone / Ipad can't render flash. What would be the best-practice to convert flash website to iphone / ipad compatible? I am thinking HTML 5. ...

iPad SplitViewController with menu in portrait mode like settings app

Hi, I would like obtain a SplitView on my ipad application with my left menu in a portrait orientation such as iPad settings. For now in portrait orientation I have a content view in full screen and I have a button at NavigationBar which includes a popover with my left menu. Thank you for your responses. ...

Buttons inside of a Pop Over Controller on the iPad

I am attempting to create a popover similar to this in an iPad app. Does anybody know if there is a built in way to do this? Is it a UISegmentedControl inside of a UIPopoverController? ...

Animate an image view in Cocoa Touch

Hello, I need to make an image view animate it's self on and off of the screen. I want it to be when the user taps the screen the image slides up. Is there a relatively easy way to smoothly move the image view? Thanks for any help ...

Deal with an edit to a contact within ABPersonViewController

I've got an iPad app that displays information about the contact in a ABPersonViewController displayed within an UINavigationController, within a popover. When the user hits the Edit button and edits the values, then presses Done, I'd like to update my UI if there are any changes that might affect it. I've tried implementing ABAddressBo...

Navigate to a SplitViewController

Hey all... I've been playing around with the iPad SDK looking for ways to improve my current iPhone app. I've got a couple place where I think the new "SplitView" would look pretty good. My question is if it's possible to navigate to a "SplitView" with my current navigation based application? Mainly I'm not sure how to push that SplitVi...

Have an object fade in and out of existance

Hello, I have a view that sets its hidden when the user taps the main view. I need the view to fade in and out of existence so it looks smoother than just disappearing. Heres my code so far (It's inside a touches event): if (!isShowing) { isShowing = YES; myView.hidden = YES; //Needs to fade out...