iphone

Help with navigation Controller, windows & subviews!!

Hi, my first xib contains a ScrollView with a springboard like interface in MainWindow.xib: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { navController = [[UINavigationController alloc] init]; [navController setNavigationBarHidden:YES]; [window addSubview:navCon...

Jailbroken iPhone 3g + startMonitoringSignificantLocationChanges

I was wondering if my code was broken, or if even a jailbroken (multitasking activated) iPhone 3g maybe doesn't support this. I create a CLLocationManager, set the delegate and so on, and tell it to "startMonitoringSignificantLocationChanges". Whenever the app is then called, I log that to a textView. But nothing ever happens. Not if I ...

Offline map from sdk

In my application i have a MkMapview and now it shows current location. i have to bookmark some other locations and show that locations even if there is no Wi-Fi connection. How to bookmark that locations and how to display the offline maps? how to save map to cache? is it possible? Thanks, ...

Cache UIView on drive?!

Hi, does anyone know if it's possible to cache the entire UIView on a drive not in memory so you don't have to regenerate the entire content everytime you want to access it ... Right now I am preloading three pages on both sides in scroll view but it would be nice to pregenerate the entire edition in background and store it in documents ...

convert WAV to ALAC

Hello, Can we convert from WAV format to apple's ALAC audio recording format ? ...

how can i save audio in iphone from server

Hi all, i m developing a application in which content size is very high,problem is how i decrease the size of our application. i have one idea for that my application is song application. when user download the application after that he wants to here song then click on particular song tab then song is downloaded from our server one tim...

Select Audio device on iPhone

Is there a way to let the user select which device they use for audio output? In the docs I have found that you can select which route to use by setting kAudioSessionProperty_OverrideAudioRoute to either: kAudioSessionOverrideAudioRoute_None, or kAudioSessionOverrideAudioRoute_Speaker However I would like to let the user to use the...

[iPhone] OpenGL transparent background

I is possible make the openGL background transparent so you can se what is behind the openGL layer? ...

live streaming in iPhone

Hello, Will the ALAC format support live streaming in iPhone ? the ALAC audio recording format is streamed to Server machine? so will i be able to play the audio chunk data, does ALAC format support? Thank You. ...

iPhone UIView not updating instantly

Hi There, My application has a button when clicked it is disabled, an activity indicator displayed and a background task is executed. When this task is completed a callback updates the interface by enabling the button and removing the activity indicator. The problem I having is the task is completing the callback function is executed bu...

How To change the Tabbaritem Images dynamically In Iphone App

Hellow All, I am working in One Iphone Application that has tabBarController with 4 tabs where each has different Image. The Image for each Tab would be in different color when selected and should not be highlited . That is generally its highlighted the selected tab.. I dont want this can anyone help me Thanks All ...

"nudge" a (table)View to use a Navigation Bar?

Hi, my Context is a tableView controlled by a Navigation Controller. So when i select a row, a new view is pushed by the navigation controller. Now i want also to "nudge" (like the effect on the start-screen to switch through the App-overview, i hope you know what i mean) to another view (also a tableView, similar to the first View) or...

Will iPhone applications compiled using the 2.x SDK be removed from the App Store?

Apple now says that apps built against the iPhone OS 2.0 SDK will not be accepted for the App Store. What happens to applications already on the store that have been built using the older SDKs? ...

First row is not shown after insert operation, save my hair

I have a situation here and losing my hair... Very simple application driven by core data which has table view controller with add navigation button. It is very similar to Recipes sample, with couple differences There is only single Entity in model with 2 attributes The cell in main table is not customized, using default textLabel T...

MPMoviePlayerViewController playing movie only in landscape mode

Hi, I want to play the video only in landscape mode in iPhone SDK.40(MPMoviePlayerViewController). It should not support portrait mode play back. How do we do this. ...

UITableViewCell: Text with styled lines inside label

Hi all, my purpose is to display a UITableView with cells with a style like: TextA - bold text with a big font size TextB - bold text with a small font size TextC - normal text with the same font size of TextB The UITableViewCellStyleSubtitle style is almost perfect, I could set TextA as textLabel and a string that contai...

what is Bonjour ?

Hi all, I was watching wwdc videos this afternoon and I heard the word Bonjour . So I just want to know what is Bonjour in Apple . This is just to clear the concept . Thanks ...

Iphone4 debugger

Is there any application debugger available in iphone sdk 4.0 ? I am build an ipod application . Its work well in ipod (Both simulator and device). But my friend having mobile iphone4 , so i build the application and gave him as a app file. He installed in his iphone4 via itunes it crashes many times . But the same application installe...

iPhone cannot release objects after retrieving from plist

Hey, I am still stacked with a simple objC code which retrieve some data from plist. After I used them I cannot release object because it fails... - (void)retrieveFromPlist:(NSString*)Nazov { NSLog(@"Objekt: %@",Nazov); NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *docume...

Improve performance in scrollview.

Hello. I am new to programming. I have a paging enabled scroll view with many pages (up to ten) and on every page I have a custom button. Every custom button has a custom image. Everything I have made in Interface Builder. When I load the view controller containing this scroll view, it takes a lot of time to load it because it loads all ...