iphone-sdk-4.0

Accessing voicemail in iPhone

Is there any way to access the voicemail from the SDK. As I know this cannot be done. At least in the new SDK have they given any control over it? ...

Issuing updates to iOS Beta testers

Hi I am wondering how i go about issuing updates to my app for Beta testers? My app relies on a plist stored in the app's Documents directory, which stores their data. If i change my version number to 1.1 for example and choose Share Application in Xcode, it will send the latest build and provisioning profile to my beta testers. My a...

How to add a TextView to a settings bundle in Iphone?

Hi, Is there any any way to add a TextView to application settings in Iphone. According to Apple's documentation, I can only find TextField, but not TextView. I have tried several key values like PSTextViewSpecifier, but no luck. Any help is greatly appreciated. ...

What is "Interface Builder Cocoa Touch Tool"

I got a code from a client to fix the bug (code was written by some other programmer), So when I open the xib file it simply hang my computer, i restarted my computer 3 times because of that and finally decided to see what's happening by opening the Activity Monitor and it turn out it is opening something with name "Interface Builder Coc...

Customize iPhone Dialer

Hi All, Is there a way to customize the calling dialer interface of iphone to make calls and everything as that the iphone dialer supports by using a public API reference. If there is a way then can anyone please direct me to a proper link where I can read about it. I know [[UIApplication sharedApplication] openURL:[NSURL URLWithStrin...

how to use the animation which is used to reveal the lower view?

Hi, does somebody know how to use the animation which is used to reveal the lower view(Map,Satellite,Hybrid, List) in the maps applicaton? Thanks in advance, -s. ...

Why is self.navigationController = nil from a method

For some unknown reason I cannot push a view, I will try to explain the best I can but i have alot of complicated views going on, And it would be a nightmare to explain but say I have the following method. -(void)showDetailView{ DetailViewController *detailView = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bu...

How to upload video on facebook using iphone sdk 4.0 or above?

Hi All, I have to upload video on facebook using iphone sdk 4.0 or above. Thanks in advance Pankaj ...

How to call a method when tap on MKOverlayView

Hi all, I am implementing a MKMapkit based application, in that I need to call a method when we tap on a overlay?. Can you guys please help me on this. Thank you, S ...

Load image asynchronously from file

I have an relatively image in local storage, I want to show it to the user without disturbing UI thread. I'm currently using [[UIImage alloc] initWithContentsOfFile:path]; to load image. Any suggestions/help please.... ...

How to create animation like water fall on wall and then spread out drops on wall ?

I need to create animation that images of water come out from bottom of view and then at middle of view at fall like water fall on wall or on ground and drops spread out here and there using core animation. I tried to use transformation & scaling with CABasicAnimation but failed to create that type of animation. how to do that ? ...

Unable to show 2 moviePlayer in same class

- (void) Scrollviews { self.scrollView = [[[UIScrollView alloc] initWithFrame:CGRectMake(32, 110, 3000.0, 237.0)] autorelease]; self.scrollView.contentSize = CGSizeMake(NPAGES * 320.0f, scrollView.frame.size.height); self.scrollView.pagingEnabled = YES; self.scrollView.delegate = self; [self.scrollView setUserInteract...

FMDB query is not taking any effect on the DB

I am using FMDB in my app to do some updates in my DB. Problem is when I update my table with executeUpdate function, it update my table BUT if I copy the same .sqlite file from project to at another place in my drive and try to query using terminal, it shows that database is not updated, why it is so? ...

Need Help with graph-api implementation for iphone

Hi all, I am trying to have an iphone application using Graph API where in a user can get his/her facebook wall updates.(Something similar to functionality of Home Tab on Facebook). I have gone through this tutorial of Graph API for iphone http://github.com/reallylongaddress/iPhone-Facebook-Graph-API Here the problem we are facing is...

Rounded UIBarButtonItems

Hi, I need to make UIBarButtonItem rounded. In xib even though the style attibute specified as bordered it displays a rectangular shape. Is there any work around to achieve this? Regards, Dilshan ...

CGAffineTransformMakeRotation before a CABasicAnimation

I'm performing a rotation of an UIImageView in place first before performing a rotation animation: // rotate to the left by 90 degrees someView.transform = CGAffineTransformMakeRotation((-0.5)*M_PI); Then calling a rotation on the view by 180 degrees... but it seems like it is rotating the image starting from the original posi...

Change color of image

IS it possible to change color of image from code ? ...

Change size of view

I put a button on view and want to call this view from another view and change size of this view but when i change size,size of button doesn't change How can i change size of view that size of all controls on view changed? Three *second = [[Three alloc] initWithNibName:@"Three" bundle:nil]; second.view.frame=CGRectMake(0, 0, 100, 100);...

ViewDidLoad after ViewDidUnload is called.

Hi, I know that ViewDidUnload may be called if there is a problem in an app such as a memory warning. When that view is loaded later, ViewDidLoad is called again. If ViewDidUnload is not called, but a view that was previously shown is moved aside (like in a UINavigationBar), is ViewDidLoad called again? What can be done if one does no...

Directory 'X' following -L not found

I have two warnings for my project in xcode, both don't stop the app running but I want to make sure I build without any warnings. I recently removed Flurry from my app, and libsimulate and I can't get these messages to stop appearing despite spending many hours searching for answers on StackOverflow and Google. I know it must be a sim...