sdk

How can I implement the eBay Shopping API in my iPhone app?

I'm thinking of adding eBay Shopping search to my iPhone app. In other words, a list will appear on the screen in a UITableView with different items that match certain search terms. Is there any guide on how to use the eBay APIs in an iPhone app or at the least a guide on how to use an API that is similar to eBay's API that I can just ...

iPhone SDK 3.1.3 and XCode Recognition of Same

How does one get XCode to recognize the existence of the latest downloaded SDK (3.1.3) after installation? The new SDKs appear in System Profiler > Software > Developer, but not in the usual dropdowns in XCode. Thank you. ...

Is there a way to make the Facebook button appear correctly in a UITableView?

I'm trying to get Facebook Connect functionality working in my iPhone app. I'm wondering how to get the button lined up correctly in my UITableView: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableV...

iPhone - Zoom in During Startup

I'm not sure why, but my app does not have the zoom in animation that all iPhone apps have when they start up. The screen, which is black, zooms in and then it just cuts to the actual view. It doesn't zoom in the actual view. Is there an option that I'm missing in an implementation file or in the Interface Builder? Any help is appreciat...

iPhone: How to detect and connect to a Wifi network programmatically using Apple SDK

Hi there, I wonder how can I detect and make a connection to a Wifi network programmatically just like the WifiFoFum app does in Apple Store. This app has been approved and recently updated so there must be a legal way of doing it. If anybody knows any way of doing it please post a code snippet... even if it is an undocumented API call a...

uitableview with each cell opening into a new xibs

looking for a tutorial, uitableview with each cell opening into a new xibs. ...

How can I integrate Amazon search results into my app?

I was wondering how I can use the Amazon Search API in my iPhone app code. I've looked around and can't really find any good usage examples. My idea would be the lookup of a certain, specific Amazon product and the ability to let the user buy that item. Thanks. Any help would be great! Update: I didn't mean ordering. I just mean the ...

How can I allow affiliate links to items in my iPhone app?

I'm making an iPhone app that has information about different video games. How can I implement a shopping API that will allow me to redirect users who choose to buy a game? In other words, I'm looking for some kind of affiliate program API that works with the iPhone and lets me place item buy buttons that redirect the user to a product ...

Comparing integers in sqlite table?

I have a high scores table in my game. When the game is over, the score is shown on the screen and it gets inserted into the high scores table. I want to know how to compare the new score to the highest score in the table so I can let the user know if they achieved a high score. Below I included the code I use to update and insert the ...

iphone view flipping: viewflips from top to bottom instead of right to left

Hello everyone i try to build a app that is in landsscape mode all the time. I did the usual stuff: plist added UIInterfaceOrientation / UIInterfaceOrientationLandscapeRight rotated the XIBs in interface builder with the little arrow in top of view. my code for launching: - (void)applicationDidFinishLaunching:(UIApplication *)applicati...

Any other way to do animations?

Is there any other way to do animations besides my below code? I'm asking because I'm going to have some pretty intense animations that could get up to 20-30 frames. I'm also wondering if it's possible to play a sound with each frame? popup.animationImages = [NSArray arrayWithObjects: [UIImage imageNam...

Moving image along predetermined path?

Is it possible to set an image into motion along a predetermined path with the push of a button in iphone SDK? I'm not looking for anything fancy. I working on a simple concept, but this would save a lot of animation work. ...

transferring images between two iphones using gestures

Hello all, I'm wondering if it would be possible at all to transfer data between two different iphones using gestures on one iphone? For instance, flick an image on iphone A and it would show up on iphone B. I realize this would require some sort of communication channel between the two iphones (may be bluetooth?). Assuming such a co...

Freeze last frame of animation?

Is there a way to freeze the last frame of my animation in my iphone app? Here's my code so far. popup.animationImages = [NSArray arrayWithObjects: [UIImage imageNamed:@"picture1.png"], [UIImage imageNamed:@"picture2.png"], [UIImage image...

How to access my mac or pc from my iPhone

Hi all, I have to access mac or windows pc from my iPhone. Can any one tell which frameworks or which concepts i have to use to get this. Thank you ...

iPhone - Sort UITableView by Array Index

I have an UITableView set up with a NSArray with 10 indexes. Right now, the first cell on the uitableview is the first index, the second cell is the second index, and so on so forth. Is there any way to make it so that the first cell displays the latest index? Maybe through some code in the uitableview delegate because I am adding data t...

iPhone Distribution Build Out of memory failure?

I keep getting an out of memory failure when I try to do the distribution build of my app. The app only gets up to a max of 12 megs of real memory when testing it in Instruments. Why is this happening? My app folder is only 18 megs without the build folder in it. Turns to 80 megs with the build folder. But this doesn't seem like a l...

Where is the leak here?

-(IBAction)gameplayButtonClicked{ GamePlayViewController *screen3 = [[GamePlayViewController alloc] initWithNibName:nil bundle:nil]; screen3.modalTransitionStyle = UIModalTransitionStyleCrossDissolve; [self presentModalViewController:screen3 animated:YES]; [screen3 release]; } ...

how to download ipad sdk

Hello ,I would like to download ipad sdk (i.e.iphone sdk 3.2),but i think it requires a mac osX Snow Leopard version 10.6.2 or later.But i have only Mac Osx Version 10.5.8 (build:9L31A).So,i made a software update but i couldnot find mac osx update in the software update list.I would like to know how to update my mac to 10.6.2 and insta...

iPhone - Animate TabBarController Switches

I am switching tabs through code with this: self.tabBarController.selectedIndex = 1; // or any other number The switching between the tabs works fine. I'm wondering if there is a way to animate the transition. It'd have to be only in this instance, not the total tabbarcontroller in general. That is to say that the transition will only...