iphone

How exactely HTTPLiveStreaming with encryption works on iPhone?

I want to use HTTPLiveStreaming with encryption on iphone. I have red in HTTPLiveStreamingdocs for iPhone that it provides "Content Production" but can't understand how exactly it works. Some one please throw some light on it. Thanks in advance. Cheers, Amit ...

how to do packaging of iphone app

Hi Friends, I am new to iPhone development. Once I encountered with the term PACKAGING iphone application. I tried little googling but no result. Can someone gimme an idea what exactly packaging is iPhone development? ...

iphone photo upload - PHP & Jqtouch library

Hi, I am building a web site which supports IPhone also. Now I am quite confused as to find a way to upload the IPhone photos to my website. Also it seems the "input type text" also doesnt work in IPhone. Have anybody worked on it....please suggest. ...

Select all the cells in UITableView

what would be the best method to select all the cells in the table(UITableView) when the user presses a button in the tool bar? ...

uibutton+setselected

hi! i have implemented the following code in my project! UIImage *add_item_icon = [UIImage imageNamed:@"add_item_icon.png"]; UIImage *img = [UIImage imageNamed:@"add_button.png"]; if(headerButton != nil) [headerButton release]; headerButton = [[UIButton alloc] init]; headerButton.frame = CGRectMake(0, 0, 320, 42); headerButto...

Pickerviews and Tableviews

Can I use just one controller to have a Tableview (bottom half of the screen) shared with a Pickerview (top half of the screen)? Also, is the Tableview the best way to implement an eight row by two column view used for display purposes only, or is there a better - easier - way? ...

Sending mail with attachment not working

I used SKPSMTPMESSAGE to send mail from my application. Problem is i am getting error while sending mail with attachment. Any one send mail successfully with attachment using SMTPSender.[message appendFormat:@"Content-Transfer-Encoding: %@\r\n\r\n", [part objectForKey:kSKPSMTPPartContentTransferEncodingKey]] give me a null value. Encodin...

to go to the new view controller ?

Hi, i have coded following in appDelegeate .m file .but i cant run presentModalViewController method.if i run [self.window addSubview:mview] ,it does not show the result..?any help to go from one controller to another controller?here mtController is Navigationcontroller. - (void)flip { MViewController *mview = [[MViewController all...

presentModalViewController gives error?

if i run following gives error,current controller is table controller.... SetController *aSecondView = [[SetController alloc] initWithNibName:@"Sets" bundle:nil]; SchedAppDelegate *mainDelegate = (SchedAppDelegate *)[[UIApplication sharedApplication] delegate]; [mainDelegate setSettingsViewController:aSecondView]; [UIView...

MD5 algorithm in Objective C

How to calculate the MD5 in objective C ? ...

NSXMLParser Parser Error With G1 Only

Hey all I have a simple xml doc.. it is well formed and passes correctly when using: xmlData = [[NSXMLParser alloc] initWithContentsOfURL:xmlURL ]; Over WiFi or 3G. However I receive a NSXMLParserPrematureDocumentEndError when using G1. I'm thinking the slower connection somehow cuts off the xml document after some time but can't ...

about auto-suggesting and make disable snapshot

hi all i am in trouble to change position auto-suggest when i put the words in textbox As long as move to next line with writing, auto-suggest show below of textbox. but auto-suggest does not show properly because of not enought size so that i should to make it showing out-of-the-textbox with upper i do not like to snapshot in some pa...

Multiple UITabbarComtroller in one iPhone App

Is it possible to have more than one UITabbarController in a single iPhone application? My application has more than one sections, each section needs to have its own UITabbarController to navigate with in that section. New section is to be loaded if a certain type of item is selected from previous section. Secondly the Back button in na...

How can (void) connectionDidFinishLoading RETURN something?

Hi everybody I have this simple scenario: main.m (which is my main class) myClass.m (which is an additional class) In my plans it should happen something like this (in MAIN.m) myClass *foo = [[myClass alloc] init]; NSArray *array = [foo returnAnArray]; What myClass does is opening a new NSURLConnection, retrieving some data and ...

Custom popup when clicking pin in MKMapView

How do I replace the black popup bubble with a custom view when clicking an annotation? ...

iPhone:'this provisioning profile does not have a valid signature or it has a valid but untrusted signature(or it has a valid but untrusted signature)'

I followed everything perfectly as Apple tutorial suggested, but still i'm getting Xcode error on provisioning profile as 'this provisioning profile does not have a valid signature or it has a valid but untrusted signature(or it has a valid but untrusted signature)' when i try to download my application in my jalibroken iPhone 3G device....

Animate leafing through ??

Is there any way to animate leafing through views to look like a real book leafing through? ...

modal view not showing inside didfinishpickingimage

Hi, I have a viewcontroller, and I would like to display a modal view controller with : presentModalViewController when a user finished picking an image. The modal view controller is working fine when I call it from a button in my main view. But when I call it from didfinishpickingimage callback nothing happens. Thanks. ...

how to use mapview in iphone?

i want to display a map using two location in which one updates continously.and also i want to show custom pin icon in map view ...

NSURLConnection delegate gets called after caller functions control is finished

i am following code from apple examples. this code is used in a method called login and i call this method from another class ABC. My problem is this when i call the Login method it will execute the code NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self]; if (theConnection) { received...