Is it possible to use Tri-tone sound in my application?
Is it possible to use iPhone sound(bundle) in my application if yes, can you give me some example? ...
Is it possible to use iPhone sound(bundle) in my application if yes, can you give me some example? ...
I am in the process of (finally) loading my App onto an iPhone device for testing. So far I have only tested the App in the simulator. The application is data-centric and uses an SQLite database. I have created an appropriate SQLite database with sample data which I used in the simulator. How can I copy this .sqlite3 file to the actual i...
Using a navigation based view hierarchy. I have a root view controller, and multiple view controllers that branch out from the same when a button is pressed. When a user presses the back button on the UINavigationBar, the current viewcontroller is popped and the display animates back to the rootviewcontroller. The problem is, I want th...
I have a fair bit of experience working with the iPhone SDK. I have a couple fully developed apps including a utility application for tracking data and a board game. I would consider myself a novice on the iPhone SDK. I also have no issues with reviewing documentation and examples for hours until I understand something, as long as the do...
I am trying to download an HTML file from the internet and store it in my app for later (offline) viewing. I use the following method to download the file but my NSLogs report that no data has been downloaded. Whats the problem here? (assume an active internet connection, assume a pre-defined path to local documents directory) urlAddres...
I'm a newbie programmer and I have played around with the SDK for a while. How do you create a homepage that has a button that will bring you to another view (the content of the app)??? If you know can you list the steps in order or link a tutorial site (It woul be awesome if the steps had code with it I needed). Thanks! ...
I am trying to load an HTML file stored locally on the apps documents directory using the method shown below. It ain't workin. What am I doing wrong? NSLog(@"Loading Saved Copy!"); urlAddress = [[self documentsDirectory] stringByAppendingPathComponent:@"/Profile/profile.html"]; //Create a URL object. NSURL ...
When Connected: I have a simple HTML page with some image elements that reference images in a subdirectory as in (src="images/someimage.jpg"). This page displays fine when accessed remotely via an internet connection. When Offline: I store the above HTML page locally to the apps documents directory for offline viewing. The local HTML...
hello everyone I have a project in which the root viewcontroller call multi viewcontrollers. There is button on a sub viewcontroller's view, when I press the button, I hope it notify the root view controller to load another sub viewcontroller. //the function in this viewcontroller -(IBAction)submitButtonPressed:(id)sender; { [sel...
How do I get a thumbnail of a video imported from the camera roll, or the camera itself? This has been asked before, and has been answered. However, the answers kind of suck for me. This thread http://stackoverflow.com/questions/1259316/iphone-sdk-3-0-video-thumbnail has some options that boil down to: Crawl some filesystem director...
Hi, Compression process for one of my Applications build gets stuck and never finishes the compression process (eternally stating "2.6 MB of 2.7 MB about 5 sec"). I couldn't find the solution by googling - even though I am not the first one to have this issue. Does any body knows this issue? Thanks- Nir. ...
BOOL success; NSFileManager *fileManager = [[NSFileManager defaultManager]autorelease]; NSError *error; NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSString *documentDBFolder...
I am currently working on a BrainFuck interpreter for the iPhone. Seeing as BrainFuck only has eight commands, I want to create a custom nine-button (eight commands + backspace) keypad that will be showed instead of the standard iPhone keyboard. Is there any easy way of doing this? Thanks, amit ron- ...
Hi guys, I've a webapp at www.mysite.com/myapp/ and I'd like to redirect users visiting my app from iPhone to www.mysite.com/myapp/i/ using an .htaccess file in /myapp folder. What I've tried so far is: RewriteEngine on RewriteCond %{HTTP_USER_AGENT} iPhone RewriteCond %{REQUEST_URI} !^/myapp/ RewriteRule .* /myapp/i/ [R] It enters a...
How to retrieve the contents of a TEXT FILE stored locally in the documents directory? ...
Hi guys: I'm a newbie to cocoa programing on iPhone. My client has a website that plays YouTube videos. Once a video is finished playing, it will automatically play the next one. This is done by using the YouTube API and swfobject. After some research, I was told that Safari on iPhone does not support flash. This make the current swfo...
Hi guys, actually I'm have a very simple problem (that's for sure) I just can't find the root cause. The problem is, that after calling the numberOfSectionsInTableView Method to get the number of Sections (24 in my case) the method numberOfRowsInSection gets called but with the last section (23). This causes an out of bound index when...
Hello I have downloaded the latest iphone sdk 3.2 beta and my problem is I cannot test my apps on the device because the device (iphone or ipod touch) runs the firmware 3.1.2 any solutions? if their is no answer just tell me how to develop iphone apps compatible with 3.1.2 using the SDK 3.2 thanks ...
Hi, I would like to add some rounded corners to all of the UIImageViews in my project. I have already got the code working, but am having to apply it to every image; should I subclass UIImageView to add this? If so, can someone give me some pointers as to how to do this? Here is the code - (void)viewDidLoad { [super viewDidLoad]; ...
I wonder how they make the username, URL to be special colored and also tap on them will navigate user to different pages. Any insights? ...