Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iOSクロックアプリでは、テーブルビューセルのフォントにわずかな影があり、テキストが刻印されているように見えます。
刻印された外観でそのフォントを再作成するにはどうすればよいですか?
よろしくお願いします!
影の色を白に設定するだけです。
label.textColor = [UIColor blackColor]; label.backgroundColor = [UIColor clearColor]; label.shadowColor = [UIColor whiteColor]; label.shadowOffset = CGSizeMake(0.0, 1.0);