sdk

Build and test on 2.2.1 iPod Touch with XCode 3.2.2?

I've just installed Xcode 3.2.2 with iPhone SDK 3.2 Beta 5 (Snow Leopard) This version of Xcode didn't come with any iPhone SDKs older than 3.0. But I want to create an app that runs on all devices from iPhone OS 2.2.1 -> 3.1.3. I managed to add older SDKs into Xcode by downloading iPhone 3.1.3 with Xcode 3.1.4 and installing each 2.x ...

Converting iPhone xib to iPad xib?

How do you do it? I saw one video tutorial on it, but the screen was too small. Also, other than changing the view size, are there any other major changes I would have to make to my iphone apps to convert to iPad? ...

How do I Record CRM message through CRM SDK web service call?

I've been tasked with record customer enquiries through a website directly into the client CRM system. The system is Microsoft CRM and I've previously worked with the supporting web service SDK. Can anyone please provide me with an example of storing a message entity record through the SDK based on simple contact fields such as email, t...

UIImageView rotation (NOT the image, but the view)

Hi. How do I rotate the ImageView ... i'm trying to use landscape mode, and have a problem with accelerometer moving the image ... Because when I work in portrait mode the x of accelerometer is the same as the x of the image ... But when I work landscape, the x of accelerometer is the y of the image, because the ImageView autorotates wi...

Switch from a View (Login) to another View with a TabBarController

Hi, i'm new at Iphone SDK Developing and now i need some help. I have a LoginView where the User have to authentificate his legitimacy. After he enter his Username and Passwort he click on the "Sign In" Button. Then i want to load my "Real-App". Here is the Problem because i can't switch from the LoginScreen to the TabBarController. I ...

Where can I find PalmOS 3.5 developer tools? Palm's site no longer publishes them.

The hard drive on one of my PCs crashed that had the installers for the various PalmOS 3.5 dev tools for my old Palm IIIc and VIIx. It seems now Palm has taken down its downloads of everything pre-Garnet. Can anyone provide the files or links to the SDK, CDK 4.0.3, POSE emulator, and whatever else is out there? ...

touchesEnded Sound?

I'm trying to play a sound on touchesEnded but I'm having a problem. There are multiple objects that get moved around, so if the below code holds true when any object is moved, it constantly plays the sound. How do I only play it once? -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{ if(CGRectContainsRect([image1 ...

Win32: Link to HtmlHelp() API documentation?

Can anyone find a link to official MSDN documentation on the HtmlHelp() Win32 API call, and parameters? Microsoft, it seems, is going to great lengths to keep the API call a secret. ...

Why is my UITableView getting its images messed up?

I'm trying to get my UITableView to show cells with images placed on them (contained in a UIImageView overlaid). I'm wondering why when scrolling up and down, the images look like they're overlaid on top of one another. What can I do in this case for the sake of memory management as well as to fix this issue? ...

For Loop Question?

I'm programming an app for the iPhone. I'm not very good with loops just yet. How do I shorten this code into a for loop? if(CGRectContainsRect([space1 frame], [box frame])){ space1.image = [UIImage imageNamed:@"box.png"]; } else if(CGRectContainsRect([space2 frame], [box frame])){ space2.image = [UIImage imageNamed:@"box.png...

Sliding finger UIImageView

How do you detect when you slide your finger across a UIImageView? Say for example you slide your finger across it and it changes color or something. I want to be able to slide across multiple UIImageViews and have something happen... ...

getting effect to image on iphone sdk

hi . i want build a photography app with effects . e.g. old images with brown or black and white filter , how can i process UIImageView to change color , brightness and .... thank you . ...

UIImageWriteToSavedPhotosAlbum Problem

Hi , i try to save a photo from camera after take a photo with a button . here is my codes: -(IBAction)savePhoto{ UIImageWriteToSavedPhotosAlbum(img.image, nil, nil); } -(IBAction)takePic { ipc = [[UIImagePickerController alloc]init]; ipc.delegate = self; ipc.sourceType = UIImagePickerControllerSourceTypeCamera;...

How would you design a question/answer view (iPhone SDK)

I'm new to iPhone development, and I have a question on how to create a view for my application. The view should display a problem (using formatted/syntax highlighted text), and multiple possible answers. The user should be able to click on an answer to validate it. Currently, I am trying to use a UITableView embedding UIWebView as con...

save a view with NSUserDefaults {iPhone SDK}

hi . i try to use NSUserDefault or something like this , to save a specific view after quit from application and when user lunch application again load from that view ... but i dont know how! ...

Trying to setup android sdk on PC with windows XP

When I start setup I get this message: XML verification failed for http://dl-ssl.google.com/android/repository/repository.xml. Error: cvc-elt.1: Cannot find the declaration of element 'sdk:sdk-repository'. Failed to fetch URL reason: Unknown Even when I force the download to use http nothing happens. I get no downloads etc for the SDK...

Unable to load UIView with initWithNibName in Apple SDK 3.1.3

I am trying to load my UIViewController and corresponding UIView programmatically in the AppDelegate class. I have the following in the applicationDidFinishLaunchingMethod of the AppDelegate class: (void)applicationDidFinishLaunching:(UIApplication *)application { NSLog(@"--- AppDelegate applicationDidFinishLaunching Start"); // Over...

does android natively support RTP and/or SCTP?

Hi, I am developing a walkie-talkie application for Android, and would like to know whether RTP and/or SCTP is natively supported in the latest version of android SDK. From whatever I have dug-up so far, the answer is no. It seems that support for SCTP is coming in JDK 7. But then, I am not sure how this will work with my android de...

Tags in TextField

My problem is- i have three cell, within that i have each textfield now i want the user is clicking in which textbox. This method textFieldDidEndEditing gives me the value which user is inputting but i dont get any tag of the textfield ...

Save image to camera roll with UIImageWriteToSavedPhotosAlbum

Hi , i try to save a photo with a button to camera roll after user capture a picture with Camera , but i dont know why my picture doesn't save at photo library !! here is my code : -(IBAction)savePhoto{ UIImageWriteToSavedPhotosAlbum(img.image,nil, nil, nil); } -(IBAction)takePic { ipc = [[UIImagePickerController alloc]init...