iphone

Embedding a UITextView in an image

I have a UIImageView displaying a picture that I took with the iPhone Camera. On top of that, I have a UITextView in which the user can type stuff that describes the picture. I would like to create a combined image of the two views and send it to a server. Anyone knows how I can do that (just creating the image. I know how to send it)...

how to manipulate the keyboard in iphone

hi to all , I want to manipulate the keyboard in iphone . basically want to create the action on the keyboard. thanks advance ...

Risk of using Airplay and MobiOne Studio?

Hello everybody, I would like to know if using Airplay or MobiOne Studio to develop iPhone apps on a PC is actually a viable idea in terms of actual deployment into Apple's App Market. Will my app face the horror that is rejection from the app store or something like that? Didn't Steve Jobs say they will reject apps that are not made us...

vocoder library for iphone app?

Anyone have any suggestions on a solid Vocoder library or similar code for use in a realtime iphone vocal morphing app. Users speaks into microphone and it should be played back with the Vocoder effect. ...

How to pack iphone code

Hi i created an iphone app and tested it on my simulator its working fine , now i want to test the same app in another simulator . How can i do the same (i copied the whole folder but its not working ) please help ...

UITextView with Syntax Highlighting

I've found a question on this already but it didn't have a complete answer to it. Is there a Framework or Library that can do Syntax Highlighting in a UITextView, specifically syntax highlighting (and detection) for Objective-C on the iPhone. Some of my Ideas of how to do this: NSAttrbutedString. Now available in iOS 3.2 and greater...

UIButton touch is delayed when in UIScrollView

Hi All, I'm running into a small issue in my app. I essentially have a series of UIButtons added as subviews in a scrollview which is part of a nib. Every time I tap on a button there is a noticeable delay before the button is highlighted. I essentially have to hold it for about half a second before the button dims and appears selected...

UKit Memory Leak

Hello everyone, I just used instrument to check memory leak for my app on device(3G, ios version is 3.1.2). I found there are several leaks displayed in instrument. The instrument output as following: Leaked Object # Address Size Responsible Library Responsible Frame GeneralBlock-16 2 < multiple > 32 UIKit -[UIVi...

ebay api buying item through iphone sdk

I want to give facility of buying items from ebay but I am not getting which ebay api i have to use for buying with iphone sdk? ...

UILocalNotification repeat sound

Hi, I have used the code from apples example from this page: Link, but I can't seem to get the sound to repeat. I have checked other applications, such as skype (for VOIP) and Alarm Clock Pro (audio?) but I cannot get the sound file to be repeated. This is my code: - (void)applicationDidEnterBackground:(UIApplication *)application { ...

Playing sound issue iPhone?

What's wrong with this code? I've used it before but now I'm getting these warnings... warning: passing argument 2 of 'AudioServicesCreateSystemSoundID' from incompatible pointer type warning: passing argument 1 of 'AudioServicesPlaySystemSound' makes integer from pointer without a cast -(void)playfireSound{ NSString *path = [[N...

Help with submitting app to app store

This is my first app that I have developed and I had been using a book about iPhone development, and it had a chapter about this, but it doesn't fully explain it, or maybe it is outdated. What I need help with is: Getting the distribution certificate, because the way the book explained did not work Incorporating it into my code or asso...

when cell gets selected in table view i should able to animate the cell before going to another view

CATransition *animation = [CATransition animation]; animation.type = @"suckEffect"; animation.duration = 1.0f; animation.delegate = self; animation.timingFunction = UIViewAnimationCurveEaseInOut; [[tableView cellForRowAtIndexPath:indexPath].layer addAnimation:animation forKey:@"transitionViewAnimat...

UILocalNotifications act differently when iPhone is tethered and when it is on battery power

I am developing an application for the iPhone and I am trying to alert the user immediately that something has occurred in my application and I am using UILocalNotifications to do so. The problem I am having is that if the phone is tethered to my development computer and a notification occurs, the iPhone wakes up immediately from sleep ...

UIImage stretchableImage

Does anyone know if Apple provides the stretchableImage's used to create the delete buttons as a resource or if anyone knows where I can obtain these. I know I could create them myself but I don't want to have to do the work that's already been done. ...

iPhone setting NSUserDefaults to nil when app is closed or in background

I want to eliminate all of the variables saved into all fields of NSUserDefaults whenever the app is closed or running in the background for a certain amount of time - say 5 minutes. I tried to add a line to the app delegate of applicationDidFinishLaunching that looks like this: if (UIApplicationStateBackground == TRUE) { NSUserDef...

Dealing with deprecated methods in iPhone

How do you deal with deprecated methods in iPhone that require you to use a newer method, not available in older versions? Consider the case of setStatusBarHidden:animated:, which was deprecated in iOS 3.2. The documentation points you to use setStatusBarHidden:withAnimation:, which is only available in iOS 3.2 or later. If I understan...

Building & Linking problems with XCode3.2.3, iPhone SDK 4.0 and FlurryLib

Architecutre in build settings is "Standard" Undefined symbols: "_OBJC_CLASS_$_FlurryAPI", referenced from: objc-class-ref-to-FlurryAPI in xxxxAppDelegate.o objc-class-ref-to-FlurryAPI in RegisterC.o objc-class-ref-to-FlurryAPI in LoginC.o objc-class-ref-to-FlurryAPI in FeedbackC.o objc-class-ref-to-Flurr...

how to print disclosure button on the right side of the row in table view in iphone

i have a table view.i divided it into 1 section.in that section i have 1 row with heading and its related content in the webview below to that row in same section. now i want to print disclosure button on the right side of the row.when i try to do this it is printing on the content of the webview. i get section heading from method "title...

Can I save user's drafts using NSUserDefaults?

I am trying to save drafts using NSUserDefaults but I am not sure if it is the right place to save data not user's preferences in. My application allows user to choose 1 or 2 images to upload and share. Users can save draft and come back to upload later. My current approach is to save the chosen UIImage to /Library directory and save t...