iphone

back buton is not allowing to add nav bar image for IPHONE

i am not able to put my nav bar image properly as back button is making problem this is my code UIImage *image = [UIImage imageNamed: @"enjoynavbar.png"]; UIImageView *imageView = [[UIImageView alloc] initWithImage: image]; self.navigationItem.titleView = imageView; // UIBarButtonItem* btBack = [[UIBarButtonItem alloc] initWithTi...

how to implement animation on shake effect in iphone?

I have implemented one simple application for iphone.now i want to implement some animation. Example:i have selected one photo from the photo library.Then i want to animate selected portion from the photo using shake effect. I have seen lots of application in apple store.But i dont know how to implement this functionality. ...

how to decrease the application size

hi all, My problem is that my application size is very high, is there any idea to reduce size of application? if i make application without content and content is uploaded my server then how i sync the application with content put on my server? i want to know that once user download application after that when he use application then...

iPhone app update using a different developer account

Hi, I have an app which is available in app store and was signed with a certificate made from an account A. Now can I submit an update of the same app this time signing it with a different certificate created using another developer account say B? Thanks in advance, Tony ...

how to pause the video using ASIHTTP

heloo all please guide me how can i pause the video which i am downloading from url using ASIHTTP request thanks in advance ...

Replacing the activity indicator in the accessory view of a table cell with disclosure indicator

Hi friends, In one of my application i have a tableViewControlles with disclosure indicators in the accessory view. When user taps on a cell an activity indicator is made the accessory view of tapped cell and another viewController is pushed in. When i go back to the tableView i want to show the disclosure indicator instead of the acti...

as there anyway to play flv videos in webview in iphone

hi all As there anyway to play FLV videos in UIWebView. which I am loading from website through RSS Feed. current It is playing only those Videos which are in MP4 format. ...

iphone sdk - how do i do this if else checking logic. checking an NSMutableArray for a possible value against parsed xml

EDIT* hi guys , lets say i have an array with 5 Strings = "1","2","3","4","5". Im also doing parsing of xml. So how do i check whether a parse xml value is the same value of either one of the objects IN the array? ...

GameKit on 4.0 not ready for primetime? Stopping advertising services.

Gamekit applications running under 4.0 do not properly handle removing GKSession objects. Running under 3.1.3 or 3.2, if a peer disconnects and the session is cleaned up (as in Apple demos): [gkSession disconnectFromAllPeers]; [gkSession setAvailable:NO]; [gkSession setDelegate:nil]; [gkSession setDataReceiveHandler:nil withContext:nil]...

Generate class diagram for IPhone app

I am trying to find a good tool for iphone/objective-C to generate class diagram to code. I want it to be flexible to change and modify the diagram so that I can separate that diagram to many smaller ones. That means, I can show some parts of the viewcontroller interacting with model classes. It will be easier to understand and get cha...

what is the best way to share an object between different views in iphone?

I developing an app, and I have an object with data from the user but this object has to be used in different views. I would like to know the best and more light way to share the object between differents views. Actually I have the object in the appDelegate and I'm trying to access by the following method yourObject* obj = [(YourAppDel...

iPhone load image without extension

Hi all! I have this problem... I need to load an image from the resources of my app that is called for example mystuff01.jpg but maybe be called mystuff01.gif or png, now, what's the best solution to do this? In my mind there's a cycle to retrieve if the file exists and if exists load it... there's a better solution? thanks ...

Custom UIButton cant interact with linked UIImageView

I'm stuck on the following code. Some how my UIButton Extended class cant show or hide an UIImageView My methods are being called and the imageview is not nil. Here is the code: @interface UILinkedImageButton : UIButton { IBOutlet UIImageView *linkImageView; } @property (nonatomic, retain) IBOutlet UIImageView *linkImageView; @e...

Jquery ui datepicker on iphone?

JQuery ui datepicker wont work on mobile safari. Any workaround or fallback? ...

How can I use class_getProperty in iPad?(Not simulator)

I'm using class_getProperty() in my iPad app(I imported objc/objc-runtime.h). And it works successfully on iPad simulator. But when I tried to run it on my iPad, Xcode said "objc/objc-runtime.h: No such file or directory" and "warning: implicit declaration of function 'class_getProperty'". So it didn't works. Please help me. ...

live streaming in iPhone

Hello , I ve an audio file in Server machine, how to stream it live to iPhone? what is the concept or technology involved behind live streaming in iPhone? Thank You. ...

Crash when running Leaks

Having recently installed the 4.0 SDK, I recompiled a client project to test how it would run under the new OS. (Previously testing with 3.1.3 had no crashes and only one memory leak, duly reported to Apple, who were unable to reproduce on 4.0 beta 3, and so closed.) Everything went very smoothly (no crashes during testing) until I deci...

Hide ActivityIndicator in moviePlayerController

As you know,when i play movie with MPmoviePlayerController ,the moviePlayer should show an activityIndicatorView in the center of the moviePlayer'view. Now,i have put a custom activityIndicatorView in my program,i just want to hide or remove the activityIndicatorView of MPMoviePlayController,can i do that ? ...

Making three20 integration independent to machine ?

Hello Guys, i just integrated the three20 framework as per as instruction provided. And its working fine. But when i sent the my project on other machine, its giving linking error. I think all the linking to be done to local to the machine. How to avoid all such scenario and how to make project independent to machine ? so that no need ...

iPhone load partial image

Hi all, I need to load a part of an image into a uiimageview... for example an image that is 100x100, only display 100x50... thanks ...