我在我的XCode項目的iOS應用我開發了下面的代碼:更改文字標籤,可以形象的XCode
testLabel = [[UILabel alloc] initWithFrame:CGRectMake(0,0, 320, 480)];
UIFont *Font = [UIFont fontWithName:@"Arial" size:40];
[testLabel setFont:Font];
[testLabel setTextAlignment:UITextAlignmentCenter];
[testLabel setTextColor:[UIColor colorWithRed:(float) 55/255 green:(float) 41/255 blue:(float) 133/255 alpha:1.0]];
testLabel.text = @"Here We Go";
我希望把圖像在該點,而不是文字。我需要用什麼來代替這段代碼?
謝謝。我更多地尋找確切的代碼看起來像什麼。 – user1506841 2012-07-23 18:18:07
不客氣。我已經添加了更多的解釋。如果你搜索'draw..'方法,你應該找到很多例子。 – Templar 2012-07-24 06:48:37