ipad

Is apple will reject my iPad app if i will not use Split view in my application?

I have make an iphone app and now i am converting it to universal app for ipad. I want that interface of my looks similar in ipohne and in ipad. If i will not using the split view controller for iPad then is apple will reject my app for iPad. Is it compulsory to use split view in iPad? ...

numberOfRowsInSection called but not cellForRowAtIndexPath in MultipleDetailViews sample of apple

Hi, If you download this sample (ipad): http://developer.apple.com/library/ios/#samplecode/MultipleDetailViews/Introduction/Intro.html and you set a breakpoint at numberOfRowsInSection and also at cellForRowAtIndexPath and you start in landscape then i have the following question: First: the app comes twice in numberOfRowsInSection -> ...

CGPDF functions vs iBooks PDF rendering

I'm making a PDF reader and it works pretty good with most PDFs. While testing with a bunch of different documents (on an iPad), I've found one that crashes the app - it makes heavy use of vector graphics and images so I'm not surprised. I also bought a bunch of PDF readers (most notably Good Reader and ReaddleDocs) to test them with thi...

Why when I catch the action for a hyperlink while using three20 an extra nav bar appears?

I am trying to study how the three20 works. It is working fine in case of bold, italics and hyperlink by giving a different color. I have given code in the appdelegate for the control to go to my own class(Eg: WebViewController). TTNavigator* navigator = [TTNavigator navigator]; navigator.supportsShakeToReload = YES; navigator.persiste...

iPhone app InputAccessoryView isn't appearing on iPad

I'm using Monotouch to develop an app for the iPhone. In my iPhone only app, I have an InputAccessoryView appear whenever the user selects a textfield. The accessory view provides buttons which aid the user (undo/redo etc). It works fantastically on the simulator and on iPhone devices. However, out of the blue, the Input Accessory V...

UIView frame size doesn't set properly in Portrait mode in iPad?

Hi Friends, Now i am working an iPad application.When i runs the application in portrait and Face up mode the view doesn't set the frame properly. After that rotating the view, the frame size is to be sets properly in the portrait and Face up mode. I don't know why its happened?. Please give me some idea for that? In portrait and FaceU...

UISwipeGestureRecognizer working fine in simulator but not in device

Hi All i have added Swipe Gesture Recognizer(left and right ) on main view. it is working fine in simulator but when running in device no swipe is happening simulator version 4.2 device version 3.2 here is my code UISwipeGestureRecognizer *gestureRecRight=[[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(RightSw...

ipad related question based on converter

hi every one.... i've a problem in converting pdf to any other formats which is supported by ipad.i tried svg and epub but everything has some drawback. Can any one suggest me software which is comaptable for ipad and memory aspects? Thank you all..... ...

Objective-C Core Data: Access data from child of child

I'm slowly figuring out Core Data for my iPad app, but I just can't seem to figure out how to access data from my to-many children (who also have to-many children). I'm hoping to get some code examples from the experts here. Let's use a simple data structure: Parent -(to many)-> Child -(to many)-> Toy I can fetch the Parent just fine ...

Managing View Controllers in iPad port

I've got an app that I've developed for the iPhone, but now want to port to the iPad. The iPhone app is navigation style and based on discrete table view controllers managed by a nav controller. The larger screen real estate of the iPad means that I can comfortably fit a couple of these table view controllers on to the screen at the same...

Memory management question: does this code has a memory leak?

// ClassA.m NSString *strA = [[NSstring alloc] initWithString:@"test string"]; ClassB *classB = [[ClassB alloc] init]; [classB setStrB:strA]; [strA release]; // classB will be released later // ClassB.h @property (nonatomic, retain) NSString *strB; // ClassB.m // custom setter -(void) setStrB:(NSString *)newStr { strB = newStr...

apple has rejected my iPhone app saying it must run on iPad as well

Hey, I've just submitted my app to review (for the App-Store), and apple has rejected my app, saying the following: "On iPad, the application displays a black screen and no content loads. This review was conducted on iPad running iOS 3.2.2 as well as iPhone 4 running iOS 4.1. A screenshot has been attached for your referen...

How to localize special ressource types like sounds, images, movies, html files and so on?

I know I can use NSLocalizeableString() for strings. But how about about other kinds of resources? I guess there are some kind of language folders where I put that into? Is there an good blog article that describes this? ...

UITextField in UITableView cell is returning null

Hi all, I've been banging my head against the wall on this one for quite some time now. Any input or direction is greatly appreciated. So the goal is the create a log in form from text fields in a table. That user info, once collected will be passed on to an array in a seperate view controller so in can stored in a "favourites" list. ...

iphone/ipad troubleshooting device crashes due to memory

I have an app that often crashes on the device (iPad), but not on the simulator, so any simulator debug tactics (MallocStackLogging for example) are not an option. What I usually get in the console is this: Received memory warning. Level=1 Received memory warning. Level=2 Program received signal: “0”. Data Formatters temporarily unavai...

MPMoviePlayer overlay in fullscreen mode (iPad)

Hello Everyone, I want to add a button on my video player when it is playing in fullscreen. I created an Overlay on my videoplayer and it's working very well on an iPhone. I tryed to same thing on a iPad, but the button never appear. Here's my code : NSArray *windows = [[UIApplication sharedApplication] windows]; if ([windows count]...

Is there way to keep the iPad screen on?

Is there a way to prevent the iPad from sleeping while my app runs? I am making a kiosk app that needs to not auto sleep. ...

converting pdf to ipad supported formatI

hi every one.... i've a problem in converting pdf to any other formats which is supported by ipad.I tried svg and epub but everything has some drawback. Can any one suggest me software which is comaptable for ipad and memory aspects? Thank you all..... ...

Direct access to iPad Photo library

Hey all, I understand that it's possible to access the iPad Photo library using the UIImagePickerController. The problem with this is that it makes it possible to access only one image at a time. I'm building an app that needs to be able to select multiple images from this library simultaneously (without loading them into memory) to sav...

Is it possible to target the iPad with the iOS 4.0 SDK?

Using the iOS 4.0 SDK, can I build an application for the iPad? ...