I want to create links similar to the facebook feed. For example, when you touch down on the name of the person in the fb app on iphone, a gray rectangular box indicates it is highlighted. Should I use a custom button for this(normal button has a border)? What's the best approach

link|improve this question

79% accept rate
feedback

2 Answers

up vote 1 down vote accepted
UITextView *infoTextView = [[UITextView alloc] initWithFrame:CGRectMake(10, 54, 300, 211)];
[infoTextView setBackgroundColor:[UIColor whiteColor]];
[infoTextView setFont:[UIFont systemFontOfSize:14.0]];
[infoTextView setText:[dict valueForKey:@"desc"]];
infoTextView.layer.cornerRadius = 5;
infoTextView.layer.borderWidth = 1;
infoTextView.clipsToBounds = YES;
[self addSubview:infoTextView];
[infoTextView release];
link|improve this answer
you need to use custom button where the images will be changing for the required state. Have an image which has border for the custom btn – Hanuman May 19 '11 at 22:47
feedback

check this link could help "How to make a clickable link inside a NSTextField"

http://snippets.aktagon.com/snippets/358-How-to-make-a-clickable-link-inside-a-NSTextField-and-Cocoa

Regards

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.