我想知道如何在iOS4中爲UILabel創建文本描邊?我需要一些建議。我想是這樣的:爲UILabel創建文本行程iphone
編輯:
UIFont *font = [UIFont fontWithName:@"Arial" size:222];
CGPoint point = CGPointMake(0,0);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 1.0, 1.0, 1.0, 0.7);
CGContextSetRGBStrokeColor(context, 2, 2, 2, 1.0);
CGContextSetTextDrawingMode(context, kCGTextFillStroke);
CGContextSaveGState(context);
// I change it to my outlet
[label.text drawAtPoint:point withFont:font];
CGContextRestoreGState(context);
謝謝你,但什麼都沒有改變! ...是@「標籤」我的插座?對不起Iam新手在IOS編程,我把我的代碼放在viewDidLoad – 2011-01-12 08:12:27