The same problem (UILabel/UIButton not showing text) happened to me because of this font issue. Changing "Medium" to "Regular" was my fix. If you are looking for a font list, you can get it by executing following code.
for( NSString *familyName in [UIFont familyNames] ) {
for( NSString *fontName in [UIFont fontNamesForFamilyName:familyName] ) {
NSLog(@"%@", fontName);
}
}
2 comments:
thanks a lot for your post. It fixed the problem which puzzled me for some time. glad I came across this post.
Hi Yaar ,,,,,
Thanks a lot .... It saved my time.
Post a Comment