我正在創建一個應用程序,並希望使用UITextView
和子類UITextView
概述文本。使用UILabel
它可以使用下面的示例完成,但UITextView
不提供drawTextinRect
。有沒有人有關於如何在UITextView
中勾畫文字的建議?UITextView大綱文本
- (void)drawTextInRect:(CGRect)rect
{
CGSize shadowOffset = self.shadowOffset;
UIColor *textColor = self.textColor;
CGContextRef context = UIGraphicsGetCurrentContext();
self.shadowOffset = CGSizeMake(0.0, 0.0);
CGContextSetLineWidth(context, [[self font] pointSize]/8.0);
CGContextSetTextDrawingMode(context, kCGTextStroke);
self.textColor = [UIColor blackColor];
[super drawTextInRect:rect];
CGContextSetTextDrawingMode(context, kCGTextFill);
self.textColor = textColor;
self.shadowOffset = CGSizeMake(0, 0);
[super drawTextInRect:rect];
self.shadowOffset = shadowOffset;
}
我在UILabels中也使用了上面的代碼,現在我需要將它用於UIButton上的標籤。所以這裏的任何幫助也可以幫助我。 – Darren 2012-07-13 11:11:54