views:

226

answers:

1

hi , everyone.. i am working on application which has the same user interface as Iphone Sms Application , i want to make a "To" text field to add multiple contacts from address book .

problem is that , how can i make the blue bubble in text after selecting the contact from address book .. and also i want to make the msg text field with auto resize , when the given frame will end , it will start scrolling down..

Please help me out.. Thanks..

+1  A: 

You'll most likely want to use a UIWebView, or a completely custom UIView, rather than a UITextView. Those bubbles are all custom drawn, there's no API for using them. You'll have to place each chunk of text, and then draw the bubble around it.

Ben Gottlieb
Thanks for suggestion . can you provide any sample code to do this.
Chris
there's an awful lot to this; I suggest you read up on CoreGraphics and UIScrollView, as those will be two subjects you'll use here.
Ben Gottlieb