-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi !
Just a simple question.
Is it possible to change the text color of UITextView with a animation?
[UITextView beginAnimations:nil context:NULL];
[UITextView setAnimationDuration:2.0];
textView.textColor = [UIColor grayColor];
[UITextView commitAnimations];
Cheers!
- Martin
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello everyone,
I want to select Text on UITextView, similar to the default "Select" and "Select All" pop options we see when we tap. I want to the user the ability to do that from my custom menu. I played with selectedRange but that doesnt seem to do the trick. Any ideas?
Thanks
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello guys,
I already did several searches on Stack Overflow and Google, but I couldn't find a solution to my problem.
I have a Detail View for a product that includes a UIScrollView and a few subviews (UIImageView, UILabel, UITextView). You can find an example here.
First I wanna autoresize the…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello all,
I am using a text view as a comment composer .
In the properties inspector I can't find anything like border style property so that I can make it to rounded rect something like uitextfield.
so the question is :
How to style uitextview like uitextfield rounded rect ?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have an RSS feed that gets arranged in a UITableView which lets the user select a story that loads in a UIWebView. However, I'd like to stop using the UIWebView and just use a UITextView or UILabel.
This png is what I am trying to do (just display the various text aspects of a news story):
I…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm running into a problem with a string that contains encoded characters. Specifically, if the string has encoded characters it eventually becomes invalid while a "normal" string will not.
in the .h file:
@interface DirViewController : TTThumbsViewController
<UIActionSheetDelegate,UINavigationControllerDelegate…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hey. I have a very simple text output to buffer system which will crash randomly. It will be fine for DAYS, then sometimes it'll crash a few times in a few minutes. The callstack is almost exactly the same for other guys who use higher level controls:
http://discussions.apple.com/thread.jspa?messageID=7949746
http://stackoverflow…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have an NSMutableArray of names. I want the pass the data (selected name) inside of NSMutableArray as text to another view's label.
FriendsController.m:
- (void)viewDidLoad {
[super viewDidLoad];
arrayOfNames=[[NSMutableArray alloc] init];
arrayOfIDs=[[NSMutableArray alloc] init];
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello, I'm still a rookie when it comes to this programming gig and was wondering if someone could help me smooth out this code. Functionally, the code works great and does what I need it to do. But when I run the performance tool the allocation graph peaks, the CPU load is high, there's a leak(s)…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Developing ios app. I have an object class Product.h and .m respectively along with my picker class which implements my vehicle selection to match products to vehicle. The files
product.h
#import <Foundation/Foundation.h>
@interface Product : NSObject {
}
@property (nonatomic, retain)…
>>> More