Feeds:
Posts
Comments

Posts Tagged ‘iPhone Application Development’

addressbook

Here i attach Code file.

Code Link:- Retrive All field value from the address book Sample Code

This code is useful for retrieve Address Book Record in your iPhone/iPad Application.

For that you have to add AddressBookUI.Framework and AddressBook.Framework in your Application.

by This code we  get all Record form Address Book form our iPhone/iPad Application.

Read Full Post »

Yes it is possible using Paste Board, we can not directly attach image like Email Functionality.

we can use paste board assign image to paste board.

then open native SMS Screen

over there we can press long hold so we can get paste option so we can paste our image over there and then we able to send that image as MMS.

Here is sample code.

UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];

pasteboard.image = Your image  Name;// Put your image name

NSString *sms = [NSString stringWithFormat:@"sms:"];

[[UIApplication sharedApplication]openURL:[NSURL URLWithString:sms]];

Read Full Post »

Follow

Get every new post delivered to your Inbox.