Posts

Showing posts with the label iOS Tutorial

Few Other Useful Additions to iOS7

Message UI Framework (Attach Files to Messages) : We have always ben using "MFMessageComposeViewController" to send messages, but we weren't allowed to add images to it. But, after iOS7, you could use : " - (BOOL)addAttachmentData:(NSData *)attachmentData typeIdentifier:(NSString *)uti filename:(NSString *)filename;" this API to attach images to the messages like below : if ([MFMessageComposeViewController canSendText] && [MFMessageComposeViewController canSendAttachments] && [MFMessageComposeViewController isSupportedAttachmentUTI:( NSString *)kUTTypePNG]) {      MFMessageComposeViewController *vc = [[MFMessageComposeViewController alloc] init];      vc.messageComposeDelegate = self ;      vc.recipients = @[ @"sender" ];      UIImage *myImage = [UIImage imageNamed: @"imageName.png" ];      BOOL attached = [vc addAttachmentData:UIImagePNGRepr...

Introduction to iOS For Very Beginners

Introduction to iOS Here's the presentation for the following people :       * For those who own an iPhone/iPad/iPod-Touch and want to have a knowledge about the iOS Eco-System.      * For those who don't have even have a little exposure to iOS.      * For those who want to land onto the iOS Ecosystem and start off.