iphone

iPhone app non-app store (safari) purchases

I wanted to develop an iphone magazine application which will allow a user to purchase single issues or subscriptions through safari with a user id instead of the app store. What does my website require to be able to handle this? ...

how to display read advertisment in our application?

i have implemented demo application.now i want to display advertisment in my application.i have download add application.And implemented in my application.Its working properly.Now i want to display real add in my applcation.which changes is required>?please give me advise? Edie:I am using AdMob framework.so please help me. ...

Error while executing symbolicatecrash command "Can't exec "/usr/bin/xcode-select": No such file or directory at /usr/bin/symbolicatecrash"

Hi all, My application get crash in apple's testing phase. I have crash log. When I am execute symbolicatecrash command, I get an error Can't exec "/usr/bin/xcode-select": No such file or directory at /usr/bin/symbolicatecrash or some how command get executed then it shows same crash file. My .app & .dSYM files are in same directory....

Label in UITableViewCell blocking background

I'm having an issue with the label inside of my UITableViewCell blocking the background image. It seems as though it only happens on the unselected state. I tried setting the background colors to clear but that didn't do it. It's adopting the tableview's background color. Do I have to set the labels background image too? // Neither of ...

resize uinavigationbar push/pop viewcontroller size issue

hi there, i need to shrink the height of a UINavigationBar (attached to the UINavigationController) i've done this via the UINavigationControllerDelegate's navigationController:didShowViewController method, and it's working fine. the problem is the visible viewcontroller that's in the main view. it wasn't resizing itself to reflec...

SMS Application

Hi all, I am developing an application for iPhone which needs to send sms message to some users.Is there any third party SMS web service which is trust able.Is there any one who have experience in doing this.Please help me to find a solution. Thanks in advance ...

Delegation in a NSThreaded Design? (iPhone)

Hi Im using a large amount of very small web services in my app and I have been down a couple of roads that does not scale or work as desired. The Design approach Im thinking about: The task for the viewController is to ask for a set of data from a general webServicesClass, this task is started in a new NSThread -> this will instantiat...

detect when shakes an iPhone

hi, i have questions regarding the shake detection that posted here before, here is a reminder: "Now ... I wanted to do something similar (in iPhone OS 3.0+), only in my case I wanted it app-wide so I could alert various parts of the app when a shake occurred. Here's what I ended up doing. First, I subclassed UIWindow. This is easy pea...

Possible to receive UIAccelerometer updates when app is inactive?

When my iPhone app resigns active status, the sharedAccelerometer singleton instance of UIAccelerometer stops sending accelerometer:didAccelerate: messages to my delegate. Is it at all possible to continue receiving those messages, similarly to how the CLLocationManagerDelegate continues to receive updates when the app is inactive? I w...

iPhone Congiguration Utility - Add webclip for webapp

Hi all, I'm using Apple iPhone Configuration Utility to configure in-company mobile phones. I'd like to add to home screen an icon for a in-house web application we have developed. Using the Web Clip section, it's easy to add the webclip to home screen, however, and here are the main issues: - The webclip doesn't show up the png icon d...

iphone - animation in the simulator works fine but in device nothing happens ?!?

-(void) DownRoll1 { down1.image = up1.image; [UIView beginAnimations:nil context:nil]; [UIView setAnimationDuration:2.2]; CGPoint destination = CGPointMake(296,440); down1.center = destination; [UIView commitAnimations]; } ...

iPhone app was working, suddenly starts crashing on startup, reinstall fixes, but why?

Here's the situation: -Had a development build of the app we just submitted on my phone, working fine for days (and previous builds worked fine for weeks). -Yesterday, I touched the app icon, the app launches then crashes out (I wasn't connected to my computer at the time, but if I had to guess, it was around or before when applicationD...

iPhone Dev fixing crazy bug

I am developing an iphone app that uses facebook connect and sqlite3. Sometimes when I launch the app, the app is logged out of facebook connect and none of the tables in my sqlite3 database can be found. It always happens together for some reason. Now, the app isn't crashing( that I can tell ) from the previous time I was using the ap...

CoreData Book Recommendation

I'm looking for a comprehensive book on CoreData. I'm rather frustrated with the many Apple documents that do not seem to be assembled into a single reference work or even at a single place, it is too easy to miss (or find) a key document. I have the Zarra book "Core Data"but it is rather lightweight. Here are the docs I have found, I...

UIAlertview Button columns

In iphone application can we set number of columns in UIAlertView as if I have six buttons in UIAlertView then how can I show it in 2 columns and 3 rows. If any one done it kindly share it how it will done .. Any sample code will be extra help ...

setPropertiesToFetch doesn't seem to have any affect

I'm trying to use setPropertiesToFetch in my fetch request to limit the data that is retrieved from my store, but it seems to have no affect. When I use it and display the object returned into the console, I can see all my properties are there. The same data is displayed whether I set the properties or not. All the relationships display ...

Start .mp3 play half way through with AVAudioPlayer

Ok, this isn't an easy question (at least not yet). I've got AVAudioPlayer working beautifully: I download an mp3 with NSURLConnection then play that data with AVAudioPlayer. My question is how could I start AVAudioPlayer playing at an arbitrary point in the mp3? I can start downloading at an arbitrary point by setting HTTP headers, no...

How should we be obtaining user permission for our server to post tweets to Twitter, using OAuth, from the iPhone?

Hello, For an iPhone app, I'm working on a feature that allows users to make automated tweets which are posted by a server (if they'd like to allow it). I've chosen to use OAuth for Twitter authentication. I've successfully gotten permission using OAuth for the app itself to post directly, and I can easily see how I could have users...

Two macs. One iPhone Developer License. Possible?

I work for a company that is interested in building iPhone apps. However, we are not clear on one issue: Does the iPhone developer certificate work on more than one computer at a time? ...

sending message to viewController from the application delegate

Hi, I'm new to obj C, I come from an AS3.0 background. Basically in this app I'm making, I'm using the applicationWillResignActive in the app delegate to react to a call coming in . I have a navigationController with a table view that just triggers another view on select (the template provided in xcode basically) I have a method in my A...