網頁

2012年7月30日 星期一

iOS開發筆記 - UIFont的設定

先來個簡單的Example,在設定Lable時常會用到

UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(110, 35, 180, 30)] autorelease];
label.text = @"測試";
label.font = [UIFont fontWithName:@"Arial-BoldMT" size:20]; //設定粗字體
label.textColor = [UtilFuncs transferHexColorCode:@"#50860e"];
label.backgroundColor = [UIColor clearColor];


在iOS中,沒有設定粗體這東西,完全要靠字體本身,所以上述Example才會用Arial-BoldMT,不過我想這才是正常的做法吧。



參考網址:
https://discussions.apple.com/thread/1533499?start=0&tstart=0

沒有留言:

張貼留言