ipad-sdk

Draw a Custom cell for tableview ( uitableview ) , with changed colors and separator color and width.

Hi, I want to draw the background of a UITableViewCell which has a grouped style. The problem with me is I am not able to call the -(void)drawRect:(CGRect)rect or I think it should be called programmatically... I have taken code from following link . http://stackoverflow.com/questions/400965/how-to-customize-the-background-border-colo...

Calling function from popover.

Alright, so I made a popover from my main view and all that good stuff. But I want to have my popover call an action in my main view when a button within the popover is pressed. MainView *mainView = [[MainView alloc] initWithNibName:@"MainView" bundle:nil]; [mainView doStuff]; The "dostuff" function changes some elements within the vie...

Can and should I run 2 versions of XCode side-by-side?

Is it possible to install the beta iPhone SDK as well as the latest "official release"? Is this even necessary, or can i just use the beta for iPhone/iPod development as well as iPad dev? ...

What is the maximum texture size available on the iPad?

Anyone know the maximum texture size for the iPad? I'm having trouble finding numbers for this. ...

iPad application submission with iPhone SDK beta 5 rejected

I try to send an specific iPad Application to iTunes connect before March 27 and as Apple says: "Only iPad apps compiled with iPhone SDK 3.2 beta 5 will be accepted for this initial review." So I compiled my application with iPhone SDK 3.2 beta 5 with a distribution provisioning profile. But when I upload my application on iTunes Connec...

What is the equivalent to WinSock in the iPhone SDK?

I need to communicate with a hardware device using TCP and with Windows I would use WinSock. What is the equivalent library that I can use from the iPhone SDK? ...

iPad Icon names?

Hey Guys, Do I have to put 2 icon images in my build for iPad? and what are the names of those 2 build, one is Icon.png and what is the other one? Thanks for all your help ...

How to customize / style a UIPopoverController

I'm working on an iPad application and I'm using UIPopoverControllers. I'm at the part where the app needs to be branded and styled and i'm wondering how to change the color / tint of the UIPopoverController? Standard is dark blue but it needs to be another color.. is this possible? Greets, Thomas ...

iPad UISPlitViewController question

Hi, It is mentioned in the Apple's documentation that if we use UISPlitViewController in our app, then that should be the root view controller. In our iPone app we are showing splash screen for some seconds till the loading of the app finishes. Once it is loaded the home screen needs to be displayed in a SplitViewController. If we use ...

How does one get UI_USER_INTERFACE_IDIOM() to work with iPhone OS SDK < 3.2

Apple advises using the following code to detect whether running on an iPad or iPhone/iPod Touch: if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) { // The device is an iPad running iPhone 3.2 or later. // [for example, load appropriate iPad nib file] } else { // The device is an iPhone or iPod touch. // [for example, l...

iPad magazine ap content grabbing?

looking to develop a magazine app similar to Time and GQ. Can anyone tell me what method they are using to pull the content in? ...

MonoTouch - Upload/Save image (or access Gallery images)

I'm a musician and I'm writing a small app for my own use on the iPad: I want to store my scanned music sheets (saved as .TIF files) on the iPad, and create set-list, search by artist, song title, do some filtering, etc... with the app. How can I upload images to my app directory (or saved from a website, I have a website that store tho...

What differences should i make in the MPMoviePlayer sample code(for iphone) to make it work in Ipad?

Its working perfectly in the iphone simulator. But not in the ipad simulator. I am only trying to make the movie getting loaded when the application launches.Copy pasted the same code in a ipad window application. But it loads and only gives the white screen and nothing is happening. Can anyone tell me what changes should I make to work...

Setting The Wallpaper On An IPad

I think there is no way to set the lock screen wallpaper on the iPhone programmatically (with ref to this question), but with the 3.2 SDK and the ability to set the wallpaper on the home screen on the iPad, does the SDK allow this to be done via APIs now? I looked up the developer reference, but i could not find anything useful. ...

iPhone & iPad versions of same app?

I have an iPhone app and would like to create iPad version of it. What is the best way to setup the project when you want an iPhone and iPad version of the app? I don't see that I'm able to use the same code base since the iPad version will have features in it that the iPhone version doesn't. It seems as though maintenance is going to...

iPhone SDK UIScrollView doesn't get touch events after moving it

Hi! I'm subclassing UIScrollView and on the start I fill this ShowsScrollView with some items. After filling it, I setup frame and contentSize to this ShowsScrollView. Everything works fine for now, i get touches events, scrolling is working.. But after rotation to landscape, I change x and y coordinates of ShowsScrollView frame, to m...

shouldAutorotateToInterfaceOrientation called several times in a row without any rotation

I am trying to implement some interface changes in my app, based on the device rotation. My app is a view based app. So, its main view controller has a didload method. The app starts in portrait. Almost all changes on the device orientation triggers the shouldAutorotateToInterfaceOrientation method but this method is not called when th...

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...

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...

Adding Video to iPad Simulator

I'm trying to get some video added to my iPad 3.2 simulator's library, so I can test my app. I converted a video using QuickTime, called it VID_0001.MOV, and copied it to the Library/Application Support/iPhone Simulator/3.2/Media/DCIM/APPLE100 folder. This video worked for the iPhone simulator, but it's not working on the 3.2 (iPad) s...