iphone

Show photo with SCRATCH OUT EFFECT by finger

Hi there, I need your help to know how to create an iPhone application to show a photo with SCRATCH OUT EFFECT. Something like the effect in this flash tutorial http://www.tutorial5.com/content/view/115/46/ Please help. Thanks. ...

Remove hyperlinks in uiwebview

Hi, I am trying to load a html page through UIWebview.I need to disable all the hyperlinks in webview and make its color to normal text color i.e i need to disable webpage detection.Is that possible Thanks in advance ...

Checkable UIPickerView in iPhone Safari

I try to custom my pickerview to be checkable like when you click dropdownlist on webview as in the picture (youtube website). http://img830.imageshack.us/img830/3747/screenshot20101004at606.png I use viewForRow method to customize view for each row in picker. - (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row...

How to start with particular Image using the iPhone WWDC 2010 - 104 PhotoScroller

Hi All, I am going through the Sample code of iPhone WWDC 2010 - 104 PhotoScroller App. It's working great with my project related images (PDF Page Images) Now I want to start the app from a custom image no - Say 5. And it should show 6th image on next swipe and 4th on previous swipe. Can anyone help in this Regard ? ...

how to implement picker for a large amount of values

I have about 20,000 records (coming from an SQLite db) that I need to present to the user for possible choices, so conventional picker control is out of question. Another possibility could be an indexed UITableView where user could check the desired value, however keeping all the 20K records in the memory doesn’t seem like a good idea. ...

problem reterive data from sqlite database base on input parameter

hi i am cuurently working in simple application inwhich i need to reterive data from salite database . iam successfully reterive all data when i write sql query "select * from User" but i want tget value base on input parameter then sqlite3_step(statement) give me 101 and sqliterow =100 then data can not be reteive form database. myda...

how to set image as background programmatically,iphone

HI all, how to set an image as a wallpaper, programmatically, in iphone? Suggestions are always appreciated. regards ...

Picasa in iPhone using GData

Hi, i have to implement Picasa client for iPhone. I have few queries in that regards. Are the api deprecated now? What if I still implement them now? Where can I find good tutorial on the same. I don't know anything about implementing google data. Also I am a newbie for iPhone development. Also I came across a few pages which said that t...

How to increase a space between two lines in multiline label ??

How to increase a space between two lines in multiline label ?? ...

How to find out if the iPhone is on silent mode?

I have a mailing application. If the user sends a mail successfully, then I need to notify that the mail was sent successfully. For that, I need to know if his phone is on silent mode (in which case there will be a 'vibrate') or regular mode (in which case there will be a 'beep'). Can anyone help me with it? Thanks in advance ...

IBActions are not working in another viewcontroller

i have created a project which has different xib viewcontrollers.In first view am selecting an image through picker controller and am displaying it in the secondviewcontroller.In secondview controller i have some buttons and i have given some IBActions to them.Here starts my problem that am successfully displaying the image in secondview...

[Fixed] Crash After Referencing Outlet To File's Owner

Hi, I've a problem with MKMapView. The Problem is that when I ran the app without referencing the MKMapView to the File's owner it works, but when I reference the MKMapView to the File's owner and I ran the app it crashes, and I don't know why. This is the view I'm using: And this is the code I have: InfoController.h #import <UIKi...

How to jump among UIViewControllers?

A upcoming iPhone app will comes with about 20 UIViewControllers which does not have any hierarchical relationship among them. Potentially any UIViewController can/will jump to another UIViewController. What is the best way to handle the switching among UIViewControllers for this app? Thanks! ...

MPMoviePlayerController error: Unable to read symbols for

Hi, if I call the movieplayer to play the following message appears on console: warning: Unable to read symbols for "/Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2.2/Symbols/System/Library/VideoDecoders/VCH263.videodecoder" (file not found). warning: Unable to read symbols for "/Developer/Platforms/iPhoneOS.platform/DeviceSup...

iPhone does not receive UDP data over WiFi

With a WiFi connection, UDP data is not received. It stops at: recvfrom(sock, buf, RECV_BUF_SIZE, 0, (SOCKADDR*)&rAddr, (SOCK_LEN*)&len); When I run the same program in iPhone simulator over ethernet it works well. What am I missing? ...

createDirectoryAtPath:attributes: alternative

[NSFileManager createDirectoryAtPath:attributes:] gives me a warning that it is depreciated. What is the alternative? Or is there a better way of doing this? Thanks Tom ...

How to get substring (x,y) location from UILabel text (iPhone SDK) ?

How to get substring (x,y) location from UILabel text (iPhone SDK) ? For example: I am having a multiline label which is placed on View. Now i want to get (origin.x,origin.y) location of any substring of UILabel.text , Is it possible ? How ? I have try goggling but not found any soln yet. ...

Click a tab of tabbarController by programming

i have 2 tab buttons with Nib files.... and i have a button on tab1 ..on pressing it i want to show tab 2's view (not click on tabbar button2)..means i want to click second tabbar button through programming... how can i do it ....is it possible ? ...

iPhone Tapku Graph, how can I use dates instead on numbers ?

I've found Tapku Graph http://duivesteyn.net/2010/03/07/iphone-sdk-implementing-the-tapku-graph-in-your-application/?utm_source=twitterfeed&amp;utm_medium=twitter ... which looks cool and fairly simple to implement - (void) thread{ NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; srand([[NSDate date] timeIntervalSince1970])...

Problem With memory management in my code.

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event { UITouch *touch=[touches anyObject]; currentPoint=[touch locationInView:self.view]; rootLayer = [CALayer layer]; rootLayer.frame = self.view.bounds; [self.view.layer addSublayer:rootLayer]; starPath = CGPathCreateMutable...