iphone

multi viewcontrollers and rotation

Hello everyone I hope to rotate only one viewcontroller in a multi viewcontroller ( rootviewcontroller and viewcontroller 1, viewcontroller2,..)project. Is it possible? I noticed I have to make rootviewcontroller enable shouldAutorotateToInterfaceOrientation. But the function willAnimateRotationToInterfaceOrientation in the viewcont...

Worked with AFOpenFlow Framework?

Hello users, has everyone ever worked with the AFOpenFlow Framework, or is there a better Framework to implement an CoverFlow in my iPhone application?? Greets Marco ...

Downloading and viewing PDF in UIWebView

I wish to view documents (pdfs) in a UIWebView and allow the user the option of saving the file for offline viewing. I know how to load from the web using; [webView loadRequest: [NSURLRequest requestWithURL:[NSURL URLWithString:doc]]]; and I know how to load a file in my bundle; NSString *pdfPath = [[NSBundle mainBundle] pathFor...

box2d:Disable bounce on collision

hi, I have some box,creating using box2d,which restitution's are set to zero.but when they fall over one another there appear bounce event.but i don't want that...i want them not move when fall over another.it can be done if i switch off gravity.but i also want gravity.here is my code UIImage *imageOfSnowV1 = [ UIImage imageNamed:[NSSt...

Good way to use CGImageCreateWithImageInRect, UIImage and UIImagePickerController questions

Hi All, I'm trying to do something which should in theory be quite simple, but I've been chasing my tail around for days now. I'm trying to take a touch event from a screen overlay, capture an image, and crop a section of the image out around where the finger touched. Now all my code is working fine, the overlay, events, cropping etc....

Add each item into string

//Parse this shit //Create array of all items in order (with submatches still NSString *myregex1 = @"\\<([a-z0-9]+)\\sref\=\"([^\"]*)\">([^\<]*)\\<\\/\\1\>"; //Get all items in an array NSArray *items = [stringReply componentsMatchedByRegex:myregex1]; //Create string to hold all items in NSString *AllOrderItems; if ([items count] > ...

Facebook-style "hyperlinks" in text

Hi there. Its been bugging me for absolutely weeks now, but I can't find out how to get links in bodies of text like in the facebook iphone app. The specific word that is a link is a different color to the rest of the text and when clicked changes color and has a gray box around it. The only way I can think is with a UIWebView - but I...

Disable noise cancellation iPhone 4 microphone

Hello, I would like to know if it's possible to disable the noise reduction microphone via code. My app plays background music that gets trim off because of this new mic. So i would like to have the background noise mic disabled while my app is open and running. Thank you ...

beginBackgroundTaskWithExpirationHandler

i m making audio play background application error in following code in this code bgtask is undeclared i do not find bgtask is which kind of object - (void)applicationDidEnterBackground:(UIApplication *)application { UIApplication *app = [UIApplication sharedApplication]; bgTask = [app beginBackgroundTaskWithExpirationHandler...

How to make UIButton use a masked image correctly?

I’m creating a UIButton programmatically and then adding a masked image with setImage: CGRect photoFrame = CGRectMake(11, 11, 180, 120); UIButton *cardPhotoButton = [[UIButton alloc] initWithFrame:photoFrame]; cardPhotoButton.backgroundColor = [UIColor clearColor]; UIImage *cardPhoto = [[UIImage alloc] init]; cardPhoto = [self maskImag...

message read or not iphone

how can i detect that received sms is read or not by user, i am using CTMessageCenter header also pleas help me.. and also tell me how can i put my application in background continuously.... ...

Show image from documents folder

I retrieve an image I have saved at the documents directory like this: //set background image NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; // Get documents folder NSString *imagePath = [documentsDirectory stringByAppendingPathCo...

How to transfer live streaming contents between two iphone devices in iphone SDK ??

How to transfer live streaming contents between two iphone devices in iphone SDK ?? Suppose, I have a two iphone device. In device (A) i open iphone camera. At the Same time, In device (B) i can see live streaming from device(A). Two devices connected either by wifi or bluetooth. I want to develop this kind of application, i have read...

How to convert an illustrated PDF (book or magazine) into an iphone or ipad app

Hello! I'v seen many apps to convert PDF into EPUB, but I'm trying to understand what's the best way to show an illustrated book, not a text-only one, on iphone or ipad. it seems that an APP would fit best. is there a way to automatically convert a PDF into a flipping ebook app? or there are any framework that I should use? thanks! ...

Stretchable image stretching part wider than 1px

I would like to create a UIButton which uses a stretchable image as Background image such as that I can easily resize the button for different labels etc. So I created the following code which works fine: UIImage *bgImage = [[UIImage imageNamed:@"Button-Template.png"]stretchableImageWithLeftCapWidth:2 topCapHeight:2]; UIButton *loginBu...

Play sound in iPhone web app

Hello, I assume there might be a HTML5 or some JS that can be used to play sound? Before you mark this as duplicate, this question is old, so I believe outdated: http://stackoverflow.com/questions/1694631/play-sound-in-iphone-web-app-with-javascript ...

audio streaming using background audio ios4

For all you guys who know some Objective-C; can you tell me (and others) how to enable the AudioPlayer to stream in the background using background audio on iOS4 using XCode? ...

How can be give data to a table out of three tables in same class?

How can be give data to a table out of three tables in same class? ...

how should I draw Custom button on Navigation Bar.

Hi all. I want to draw custom button on Navigation bar. Can anybody help me. ...

How to implement "Searching" in my pdf viewer iphone application?

I am implementing a pdf viewer application with pdf loaded to the UIWebview. I want to add the functionality of "search a keyword" for the contents in pdf. ...