I have a UITextView which i create in the code: myView = [[UITextView alloc] initWithFrame:CGRectMake(10,5,220,50)];
I want to make an iOS text editor for a certain rare human language, and I want it to support my own spell checking and autocorrect systems for that language.
I am using a UITextView to display the text from a xml.开发者_如何学运维I parsed the xml and stored the text in a NSArray and from there i am adding it to a UITextview in my code.
I ve an UIScrollview开发者_开发问答 ,in which I ve placed UIImageView and UITextView..Here I add the data to the UITextView dynamically…I want to scrollboth the image and the text at the same time .I
On my app I need to do this: when a character is typed on TextView to be saved on a NSString and after that to be replace with \'*\'. I tried this :开发者_JS百科
I am trying to implement UITextView in my iphone app. UITextView\'s content increases dyamically. At same time I want to move scroll pos开发者_如何学编程ition also.
I\'m trying to open part of html page with help of ASIHttpRequest and NSRange, but it isn\'t working.
I have a problem now. I want to get wikipedia data using wikimeta. I get the data with NSString methode (stringWithContentsOfURL:encoding:error:). But, sometime when the connection wa really slow, i w
I have the following problem: I have a standard UITextView which I resize once the keyboard pops up. I al开发者_如何转开发so have another view which I animate into view (not the standard accessory vie
I am working on a Native SMS application. I am using Chat bubble in my view a开发者_如何学Pythonnd to add text in that (I am using UITextView)