开发者

How to create Text Links on iphone

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开发者_如何学Go the best approach


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];
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜