iphone

iPhone Mockup apps

Hello all Does anybody out there use some iPhone app for creating iPhone app mockups on-the-go. I read about several webtools, but I am looking for an iPhone app alternative. Regards ...

Adding Tab Views To A TabViewController Iphone

I am having problems doing something simple.... I add a tabviewController to my iphone app and hook it up to Main Window.xib When I run the app like this I see the tab controller at the bottom and it seems to be fine. In the xcode menu I click add new file and select UIViewController subclass under the Coca Touch classes. I also te...

iPhone SDK Simple Twitter Question

Hi Everyone, I'm just playing around with the iPhone SDK and wanted to make a really simple Twitter app but I'm not sure how to do this. I just need to fetch the last 5 updates from a user just through their username. For instance, if I type in "mashable", I should get mashable's 5 latest updates. How would I do that? Thanks so much ah...

Sqlite database is not updating

Hi am new in this field.i am trying out one app. i am storing data in sqlite database. i am only using sqlite for my app when i add data into table from my app, I can see changes in my simulator but when i check my database there is no change and when i reset my simulator all my added data is gone. Please help me. i don't know what is w...

iPhone/iPad apps with backend databases?

We're investigating the iPhone Enterprise Developer Program as a way to develop and distribute in-house apps. Since our backends are all Windows, SQL server and Oracle databases, we have to find out a way to make our data available for the coming in-house apps. As far as I know that Core Data is mainly based on SQLite as persistent stor...

how to fetch a Google Data API feed only over the cellular connection, avoiding any WiFi connection in Iphone App?

hai to all I am developing Iphone App ,in that I should connect to cellular network using pdp-ip0 . avoiding any wi-fi connection (if there also).And using this cellular data network only I need to fetch the data from URL .could any one please help me how to do that .I have seen reachability code .But it only testing the network connect...

how to detect memory leak in new sdk 3.2?

I have implemented ipad application foe that i want to check memory leak.I know that there is some extra feature for memory leak.but i dont know how to enable.please advice me if possible. ...

NSThread + Using UIkit (UIImage)

Error- Tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread. Crashing now Im running a NSThread to download an image and display it, which is all in a method which is ran an other thread. problem im getting is, when i try to set the UII...

Sample code for Navigation Controller in Utility Template?

ANy sample code, xcode project for creating Navigation Controller in Utility Template's flipsideViewController. I can create settings on flipsideViewController using Interface builder. How to create table view on that screen that will switch to other screens and will come back? ...

iPhone: Can't get mapkit custom annotation image to work

I figured that using my own custom pin image for annotations would be super easy. But, I have never been able to get it to work, and I have no idea why! I am simply using: Annotation *anno = [[[Annotation alloc] init] autorelease]; anno.coordinate = ridesMap.userLocation.location.coordinate; anno.title = @"Current Loca...

What's the equivalent of FMS for iphone?

Since iphone doesn't support flash at all. Is it Darwin streaming server ? ...

NavigationBar PushViewController not working.

Hi guys, I have been stuck at this problem for awhile now. I have a UIVIEW(SelectionScreen) that has been pushed in by using SelectionScreen *aSelectionScreenViewController =[[SelectionScreen alloc]initWithNibName:@"SelectionScreen" bundle:nil]; self.navigationController pushViewController:aSelectionScreenViewController animated:YES] ...

is it possible to test the network connection is via cellular data network in Iphone app

is it possible to test the network connection is via cellular data network in Iphone app ...

how do I specify a system font that handles wide characters on the iphone?

This is sort of a generic question due to my lack of experience with fonts, so a little patience and/or pointing in the right direction to get more info would be appreciated. I have an iphone app and am noticing that when I print some text on my labels, I end up with garbage when the string contains non-ascii, like Korean for example. ...

TableView is not adding more than 2 TableCellView

I have added a TableView using interface builder. Now i am trying to insert TableViewCellView into that TableView. Its just allowing me drop 2 CellView from the Library. As soon as i dropped 3rd CellView, it put it outside the TableView. what i am doing wrong? Following this tutorial http://iphone.galloway.me.uk/iphone-sdktutorials/cus...

Linker errors after upgrade to xcode 3.2.3 for iphone app

I've just upgraded to XCODE 3.2.3 and upgraded my base sdk from 3.0 to 3.2 iphone sdk. After doing this I started getting a bunch of link errors with barely any info, here's what I got: ".objc_class_name_CATransition", referenced from: ".objc_class_name_NSObject", referenced from: ".objc_class_name_NSFileManager", referenced from: "....

Can I get default audio files of Iphone (marimba, alarm, ascending,...)?

Hello everyone, Currently I am working on iPad. I would like to retrieve system audio files by default in iPad (I think it is the same in iPhone). Does anyone know how to retrieve it? I have tried AudioServicesCreateSystemSoundID or AVAudioPlayer but I can get these audio files (Marimba, alarm or ascending,...) Thank you ...

My sample dylib is not working in iphone Device but working fine in Simulator

Hi All, I have created a sample dylib with add(int,int) method. I kept this dylib in usr/lib and tried to call this method by including this in frameworks of my iphone application. Now this works fine with Simulator but not running in my Device. Can any one give me clue Where I am going wrong. Following are the Error/warning messages I ...

Rename tabs at run-time

Hi all, I have a tab bar app that has to display in different languages depending on a user's preference but I can't find much info on how to change the tab names at run-time. I need the tabs to show the correct names at startup, not when the tabs are accessed. Best info I could find was running self.tabBarController.selectedIndex = 1...

Objective c select statement

hey guys im trying to do a SELECT Statement from a local SQLDB so my statement is something like select ..etc..etc WHERE Date =%@,theDate theDate is an NSString variable. i NSLoged theDate and it returned 22/06/2010 But it doesnt work so i tried the following select ..etc..etc WHERE DATE ='22/06/2010' And the values came by. any idea ...