2014-05-01から1ヶ月間の記事一覧

UITextFIeldでadjustsFontSizeToFitWidthが効かない時の対処法

この現象は、テキストフィールドに文字が入力された状態で、fontプロパティを変更すると起きます。 [textField setNeedsLayout]; で直ります。

NSForegroundColorAttributeName が動かない、反映されない時の対処法

NSDictionary *stringAttributes = @{ NSForegroundColorAttributeName : [UIColor blackColor], NSFontAttributeName : [UIFont systemFontOfSize:14.0f], NSStrokeWidthAttributeName : [NSNumber numberWithFloat:-1], NSStrokeColorAttributeName : [UIC…