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?
...
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 -> ...
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...
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...
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...
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...
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...
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.....
...
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 ...
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...
// 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...
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...
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?
...
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.
...
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...
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 a way to prevent the iPad from sleeping while my app runs? I am making a kiosk app that needs to not auto sleep.
...
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.....
...
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...
Using the iOS 4.0 SDK, can I build an application for the iPad?
...