iphone-sdk-4.0

Help required in converting iPhone App to iPad

Hi All, I am using the latest Xcode and i created a view based universal app and started building focusing on iPhone and now it is mandatory for me to put it in iPad. I didnt use the Interface builder in the development as more dynamic screen changes were expected from the beginning. In the code i have put all the screens with CGRECTMak...

Native Google Reader iPhone Application

I am currently in the process of building a native Google Reader iPhone application similar to the successful application "Reeder for iPhone", however, with a full Twitter client inbuilt as well. I have finished the Twitter client and am now struggling to start the Google Reader client. I've browsed through multiple documents and have t...

'NSInvalidArgumentException', reason: '*** -[NSPlaceholderString initWithFormat:locale:arguments:]: nil argument'

va_list arglist; if (!formatstring) return; va_start(arglist, formatstring); id outstring = [[[NSString alloc] initWithFormat:formatstring arguments:arglist] autorelease]; va_end(arglist); UIAlertView *av = [[[UIAlertView alloc] initWithTitle:outstring message:nil delegate:nil cancelButtonTitle:@"OK"otherButtonTitles:nil] autorelease];...

Is it possible to stop a libxml parser while the process is running?

Hi all, I am using a libxml parser for quick downloading and display. My problem is in some cases I need to stop the parser while it is processing. Is it possible to do? Can you guys please suggest me on this. Thanks in advance, Sekhar Bethalam. ...

Orientation Problem in iPodtouch not in iPhone/iPad

hi! i have implemented application in iOS 4.0 and Provide LandScape Orientation it works fine with iPhone and iPad but gives problem in iPodtouch. i am making Universal build.Please give me some guidelines.Thanks in Advance. ...

How to send sms from Iphone simulator 4.0

Hi I have gone through http://blog.mugunthkumar.com/coding/iphone-tutorial-how-to-send-in-app-sms/ for sending sms from Iphone. this is giving me alertView with message textMessage is not enabled on this device. plz suggest me where is the problem. Thanks for any help/suggetion. ...

Detect external hardware which is connectd to iPhone

I need to detect an external hardware which is connected to the iPhone. Let say when the camera is running in our application and user plugss an external hardware device which is a camera and default behavior is propagated to the external hardware. In that scenarios how does the program know that the external hardware is plugged? Simply ...

how to configure log out in iPhone 4.0

How to configure log out in iPhone 4.0 as it does not call applicationwillTerminate method in 4.0. ...

Array giving EXC_BAD_ACCESS in for loop

I have a C array defined in my method as: int c = 4; int r = 5; keysArray[c][r]; I have this for loop, which works, populating the keysArray as expected. for (int row = 0; row < r; row++) { for (int column = 0; column < c; column++){ keysArray[column][row] = [anotherArray objectAtIndex:0]; NSLog(@"array1 %@",keysA...

Browsing through all iPhone application

Hello Everyone.. Hope You all are fine.. I have a query to ask regarding new features of iPhone 4.0 My Question is .. Is there any possibility to brows any document throughout the iPhone through the application ? I mean, Suppose in one of my application have feature to share file using Bluettoth, Now When i run this application la...

continuing download after the app goes to background

In my app, i download around 25mb+ data. During the download process if the user press the center button and app goes background what should be done so that the download continues once the app comes to foreground ...

problem in displaying JSON data in table view on iphone

i can parse data and see the output also but i am not able to display them in table view problem is 1st my tableviews code are executing then rest functions are working that's why i am getting 0 , how to avoid this ?? this is my code - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { NSL...

Compiling libcaldav for iPhone

Has anyone successfully been able to compile libcaldav for the iPhone along with all its dependencies? Is anyone willing to share their experiences? ...

iPhone Web Application

Hi, I had a quick question regarding UIWebView. Is there anyway to programmatically navigate the UIWebView? Essentially, I prompt the user for certain information, such as (Current Location, Time). Using this information, I would like to fill out and complete a form on a webpage, and display the resulting UIWebView to the user. Is t...

Using iPhone to measure the waist size of a person

Hi all. I want to create an application using which I can measure waist of any human being. But I am not able to identify how to perform such kind of thing. I may can use ACCELEROMETER but how to use it or else if any kind of another logic any one can suggest me so that I can create such kind of application. thanks in advance ...

How to develop an iPhone app to work with the current iPhone's music library

Hi everyone, My friend (who knows nothing about programming what-so-ever) asked me if I could develop an iPhone application that lets the user select an artist from thier current synced artists on their iPhone music library, and display to them a list of concerts they will be playing in the near future. Maybe even use your current locat...

This coder requires that replaced objects be returned from initWithCoder:'

Hello Everybody! I'm testing my app on simulator 3.1.3 release, it runs fine. When it come to simulator 3.2 or 4.0, it crashes right from the beginning: 2010-09-28 18:36:39.957 Angeloni[23268:207] *** Terminating app due to uncaught exception 'NSGenericException', reason: 'This coder requires that replaced objects be returned from init...

can i add a view containing a tabbar as a modal view

Will it cause any issues with submission.I dont want to remove it as it works well for me. ...

Version change , Could i possible to run 3.1 application in 4.1

hi is it possible to run iPhone application developed in iPhone sdk 3.1 on iPhone (device ) with sdk version 4.1 ? what are the minimum system requirements of iPhone 4.1 ? , i mean xcode version , os verstion. thanks and regards. Jaleel PP ...

How to call a method once the MKMapView delegate methods completed

Hi all, I am implementing a MKMapView based application. In that I need to call a method once the pins are displayed. Is there a method to know the delegate methods are completed and we can make our calls?, can you guys please suggest me on this? Thanks in Advance, Sekhar Bethalam. ...