The UITextView class implements the behavior for a scrollable, multiline text region in iOS. The class supports the display of text using a custom font, color, and alignment and also supports text editing. You typically use a text view to display multiple lines of text, such as when displaying the ...

learn more… | top users | synonyms

0
votes
0answers
24 views

Creating a good custom emoticon chat experience on iOS

I'm trying to come up with possible implementations for what is basically an expanding UITextView with the capability of typing inline images. There are literally dozens of open source projects I've ...
-1
votes
1answer
29 views

How to Access `UItextView` data from another view controller

How I access the body of UITextView from another view controller for email here is my code EmergencyMessageController *ViewB1 = [[EmergencyMessageController ...
0
votes
1answer
20 views

TextView - Scroll TextView To Bottom

I am making a an app that has a TextField and a button. When I click the button some text will add in the TextField. But when clicking the button, I wan't to scroll down to the bottom of the text ...
0
votes
1answer
28 views

NSUnknownKeyException of UItextView

my code: @interface UITextView () - (id)styleString; // make compiler happy @end @interface MBTextView : UITextView @end #import "MBTextView.h" @implementation MBTextView - (id)styleString { ...
3
votes
5answers
63 views

Textview with Suggestions List in iOS

I am trying to implement a textView in which when user starts typing(Let's say names) it would show up the suggestions and when they click them it gets added to the textView than user presses comma ...
0
votes
0answers
47 views

My UITextView makes my App crash when back button is pressed to get back to the menu in Xcode

This is the code I have in my .h @interface Notebook : UIViewController { IBOutlet UITextView *textView; //loads "Data Saved" message after save button hit IBOutlet UILabel *loaded; } //Database ...
0
votes
2answers
32 views

How to make UITableViewDataSource ask for cell height before each cellForRowAtIndexPath call?

I have many cells which contains several resizable UITextViews. I want to make dataSource to call heightForRowAtIndexPath before every cellForRowAtIndexPath call, not only when table is reloading ...
0
votes
1answer
24 views

how can i detect date from UITextView and add an event as you tap it

Can i detect date from UITextView and add an event as you tap it. The text view is not in editable mode. I tried self.txtView.dataDetectorTypes = UIDataDetectorTypeAll; but its not working ...
0
votes
0answers
6 views

Styling UITextView text pre-iOS 6

I'm looking to underline the text of a UITextView (all the text, not a portion of it) and the following works wonderfully on devices running iOS 6 but of course it isn't available on previous OS ...
1
vote
1answer
16 views

How can I change a text views content depending on a button press within a different view controller.

I have come across a simple issue that has totally flummoxed me for some reason. I have one view controller (which I will call the Info page) which has a text view contained within it. The text view ...
0
votes
2answers
36 views

how to read the x,y position of xcode UITextView created in storyboard

How can I read the x,y position and width of a UITextView created in storyboard? At run-time, I need to programatically create other objects immediately below the UITextBox? And all run-time created ...
0
votes
3answers
37 views

UiTextView in Custom UiTableViewCell does not responds to didSelectRowAtIndexPath

I have a UITextView on a custom UITableViewCell and when I click on the UITextView, it does not trigger the didSelectRowAtIndexPath, how do I change this behavior so that that delegate is called as ...
1
vote
0answers
27 views

How can i place the UITextView auto-complete bubble?

I placed UITextView for simple chat app. But the auto-complete bubble was hidden by keyboard. How can i place the auto-completion bubble on top of the UITextView's input?
0
votes
0answers
28 views

Setting Background Image for UITextView

I have managed to get my UIImageView to show behind my UITextView and it is just fine on one view but on this one, some of the text is getting highlighted and so the image doesn't show behind that ...
0
votes
2answers
384 views

performSelector in category of superclass fails when calling method available in specific subclass

I have UIView category that defines methods to manipulate attributedText property of UILabel and UITextView. @implementation UIView (replaceAttrText) -(void) replaceAttrText: (NSString *)str { if ...
1
vote
1answer
30 views

UITextView showing text in Modal View

How can I show new text in UITextView in modal? So, here is the text, and I have 2 views, main and modal. I need to display text, which was set in main view, in modal. The TextView in modal was ...
0
votes
5answers
40 views

Populating UITextView with Specific Info when UITableView Row is Selected

I have a UITableView and another view. The other view has a UITextView that I want populated with different text depending on what row in the table view is selected. I know how to do it if I create ...
0
votes
0answers
6 views

Overriding Storyboard's link detection's behavior (while retaining styling)

I have a view with a number of UITextView instances, some of which use Storyboard's "detect links." What I want to do with some of the others is match that style (blue and underlined) but override the ...
0
votes
6answers
70 views

How to make the UIAlertView call itself again?

Below is the scenario. I have created a UIAlertView in viewDidLoad of the Controller in which I display the Alert. loginAlert = [[UIAlertView alloc] initWithTitle:@"Check" ...
0
votes
0answers
16 views

iApp raising exception, only in Thai

The iPhone app I am working on is behaving rather normally, up to now. It supports several languages,but the last one I added (Thai) is giving me trouble. For some reason it crashes, raising an ...
-1
votes
3answers
29 views

How to create a new textView every time when clicking on the same button?

I would like to create a new uitextview every time when the user click on the same uibutton. I've tried to write some codes but I can create one uitextview only. Would be glad if there's some sample ...
0
votes
2answers
64 views

Issue with updating app and UITextView

I have an app that has a UITextView in it. The user presses a button and the action changes the text on the UITextView. The app is functional and in the AppStore right now, it was built using iOS ...
0
votes
3answers
33 views

IOS Resizing UITextView for IM Program

Currently I have a program that displays chat messages between users. It puts each message in a cell and stores the message in a UITextView that's contained in the cell. The UITextView has a ...
-2
votes
0answers
51 views

Objective-C iPad - UITextView text does not appear without return key press

I've got a UITextView loaded from a nib which is moved into the screen frame when the user slide it. The nib is present twice, one at the left of the screen and the other at the right. The left one ...
0
votes
2answers
62 views

combine uitextview, uilabel and uiimageview in a scrollable object ios

I need a view that contains (title, image, and details), the details is about a textview. what I need is, to allow scroll to all the view, not just for the texview. in my application, if I disabled ...
2
votes
2answers
58 views

UITextView inside a UIScrollView inside a Popover is not fully visible when keyboard is displayed

I have a UIPopover with a UIScrollViewinside it that contains a UITextView at the bottom. When the keyboard shows, the popover is resized as the text view begins to be edited. I want the code below ...
0
votes
1answer
57 views

Strange Behavior in Scrolling UIScrollView to UITextView hidden by keyboard

I have looked at a number of posts here on scrolling and unhiding a UITextField and believed that the same code should work for a UITextView, but that seems not to be the case. The first issue I ...
1
vote
2answers
47 views

iOS hide default keyboard and open custom keyboard

I have an UITextview, when user taps on UITextview i need to hide the default keyboard. For that i have done, [myTextView setEditable: NO]; So the keyboard is not shown, here i have created an ...
0
votes
0answers
5 views

Change color of cursor (caret) in UITextView without private method calls

Is there a class for a custom UITextView with a customizable cursor color? Dov did this for UITextFields already: Change UITextField Cursor / Caret Color
0
votes
2answers
36 views

Hide keyboard when changing view

I've already checked other similar questions but none of them solved my problem. I have a window-based application and I'm using more windows in the same .xib file. In the first window, I have some ...
0
votes
1answer
58 views

How to allow NSAttributedString text be typed into a UITextView?

I'm trying to allow different styles of text to be typed into a UITextView, a bit like a text editor using simple attributes such as bold or italics. I understand by using the textView's ...
-1
votes
0answers
44 views

app crash on deleting text from uitextfield and uitextview

When I trying to delete text from menucontroller then my app crash with following message * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-deleteObject: ...
0
votes
2answers
47 views

iOS and xcode: How to make a allow a user to minimize the keyboard when in Text View field

Just like the title says... How can I do that? I want the user to enter lots of text, and then somehow minimize the keyboard and go back to interacting with other objects in that view. However, they ...
1
vote
1answer
64 views

UITextView returnKeyType

I'm trying to change the "Return" key on a UITextView (not UITextField) to a "Done" key. I have the following code that doesn't update the button and leaves the button unchanged. The button starts as ...
1
vote
5answers
47 views

Make keyboard disappear with textField and textView

I'd like to dismiss the keyboard with a text field using - (BOOL)textFieldShouldReturn:(UITextField *)textField {, but I need to do the same with a text view, so I'll use - ...
0
votes
0answers
6 views

Make UIKeyboardCandidateInlineFloatingView visible for a hidden UITextView

How can a UIKeyboardCandidateInlineFloatingView made visible for a hidden UITextView? Thanks for your answer in advance!
2
votes
3answers
58 views

Expandable UITextField with option for inserting image

I want to make the same view as iPhone default message app here is the screen shot what i want to do so can any one help me for suggesting 3rd party control or technique for making this kind of ...
0
votes
1answer
61 views

Replace part of UITextView's attributed text

I'm trying to create a text view in my app. It simply highlights the syntax and displays the highlighted text in a UITextView via AttributedText. Here's the code: NSMutableString *ms = ...
3
votes
1answer
40 views

UITextView hangs on very long pastes - how to catch and avoid?

In the course of developing an app someone submitted a bug report to me - "Cannot paste long text into text field". Sure enough, it hangs with the "Paste" bubble remaining blue from the tap and ...
0
votes
1answer
25 views

UITextView transparent text issue

Googled abit, found out this question - UITextView with width > 512 does not show text So re-setting the frame did make the appear - but now the UITextField does not scroll. I tried using ...
0
votes
1answer
43 views

NSAttributedString to NSString UTF-8

My code is something like: NSData *data = [NSKeyedArchiver archivedDataWithRootObject:[textView textStorage]]; NSString *text = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding]; ...
0
votes
2answers
78 views

How to format data for display in a text view

I have a button that shows some part of the URL on a text view, but I would like for this information to be shown in a specific format. - (IBAction)Accesos:(id)sender { NSData *data = [NSData ...
1
vote
2answers
118 views

UITextView text vertical Alignment

I have created Custom UITextView class ,where textView grows dynamically as user types characters and textview frame resized dynamically.I want to align the text vertically center in the frame,it ...
1
vote
2answers
42 views

why UITextView draws text in bad frame after resizing?

I'm stuck with some kind of magic: when I try to change UITextView frame (in this case with UISlider), text is drawn in some other (smaller) area than frame (resizing multiple times). The funny thing ...
0
votes
3answers
127 views

textview inside a scrollview ios [duplicate]

I am new in IOS programming, I have a tableview, when I Select an item in the table pulls up a detail view. The detail view has title, picture, and at the bottom a textview. All those items are inside ...
0
votes
4answers
59 views

textViewDidBeginEditing - determining which text box is being edited

I have a page with 5 UITextView objects. I use the textViewDidBeginEditing: method to animate the observationComment text box which works fine. But now I want to do the same for the other 4, but I ...
0
votes
0answers
65 views

UITextView - setting font size of attributedText slow?

I'm trying to change the font size of my UITextView's text, which is using attributed text, with the following: UIFont *font = [self.textView.font fontWithSize:value]; NSDictionary *attributes = @{ ...
0
votes
1answer
20 views

Wanting to Push to UIViewContoller, from UIViewController via openURL and custom URL navigation

I'm currently working on an application that requires a new view to be pushed to when the user clicks on a URL (This new view contains a UIWebView with browser functions). I've got this working ...
2
votes
1answer
86 views

Changing UITextView font size after rotation works weird on iOS 5

I have a UITextView that can be rotated, resized dragged etc, and everything works fine on iOS 6 and iOS 5 when I resize or rotate or drag but when I rotate the UITextView and then resize the ...
0
votes
1answer
40 views

merge the text view scroll with the screen scroll in ios application

I have a view controller which includes three components (label, image and uitextview), in the text view I have my text which has unlimited number of lines. For this reason, I have used the textview ...

1 2 3 4 5 37