views:

37

answers:

2

I am having a UiTextView in That I want to Justified the text can anyone help me to do that

A: 

it doesnt look like its currently available with just the standard api's but here is a relatable stackoverflow solution.

http://stackoverflow.com/questions/2544905/how-to-change-an-uilabel-uifonts-letter-spacing

brian brinley
+1  A: 

Use the property textAlignment to adjust this; for example:

textField.textAlignment = UITextAlignmentCenter;

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITextView_Class/Reference/UITextView.html

petert