It looks like you're new here. If you want to get involved, click one of these buttons!


#define kClanProNarrowBoldFontName @\"ClanPro-NarrowBold\"
#define kClanProNarrowBookFontName @\"ClanPro-NarrowBook\"
#define kClanProNarrowMediumFontName @\"ClanPro-NarrowMedium\"
#define kClanProNarrowThinFontName @\"ClanPro-NarrowThin\"
switch ([indexPath row])
{
case 0:
[[cell textLabel] setText:kClanProNarrowBoldFontName];
[[cell textLabel] setFont:[UIFont fontWithName:kClanProNarrowBoldFontName size:18.0]];
break;
case 1:
[[cell textLabel] setText:kClanProNarrowBookFontName];
[[cell textLabel] setFont:[UIFont fontWithName:kClanProNarrowBookFontName size:18.0]];
break;
case 2:
[[cell textLabel] setText:kClanProNarrowMediumFontName];
[[cell textLabel] setFont:[UIFont fontWithName:kClanProNarrowMediumFontName size:18.0]];
break;
case 3:
[[cell textLabel] setText:kClanProNarrowThinFontName];
[[cell textLabel] setFont:[UIFont fontWithName:kClanProNarrowThinFontName size:18.0]];
break;
case 4:
[[cell textLabel] setText:@\"Normal\"];
break;
default:
break;
}


NSArray *array = [UIFont fontNamesForFamilyName:@\"ClanPro\"];
NSLog(@\"array is: %@\", [array description]);
array is: (
\"ClanPro-NarrowBook\",
\"ClanPro-NarrowBold\",
\"ClanPro-NarrowMedium\",
\"ClanPro-NarrowThin\"
)
...cell 0x4919760 \"ClanPro-NarrowBook\" (font [B]0x491a550[/B])
...cell 0x4b4a9c0 \"ClanPro-NarrowMedium\" (font [B]0x491a550[/B])
...cell 0x4b4ade0 \"ClanPro-NarrowBold\" (font 0x4b4b180)
...cell 0x491fe40 \"ClanPro-NarrowThin\" (font [B]0x491a550[/B])
Replies
SlickShopper 2 | BTIConcepts on GitHub | Free NSLog utility | Free Getter Utility | Leave a PayPal donation.
Are you a newbie? Things you should read:
Definitive Guide To Properties | UITableView Series | A Model (Object) Is A Beautiful Thing
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like Awesome- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like AwesomeBut after a couple of days of experimenting.
I've found that it's a limitation that only 2 variants of a single font face is supported.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like AwesomeI just ran into the identical issue today as well, with a different font family, but 4... with the identical results.
-) No matter what forum you join, you always start as a newbie. Even if you own the board.
-) There is no stupid question, if you think it is stupid don't answer it and it will fall of the screen
-) If you post some helpful sol
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like AwesomeSlickShopper 2 | BTIConcepts on GitHub | Free NSLog utility | Free Getter Utility | Leave a PayPal donation.
Are you a newbie? Things you should read:
Definitive Guide To Properties | UITableView Series | A Model (Object) Is A Beautiful Thing
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like AwesomeIt should work even for different font variations of the same family.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like AwesomeSlickShopper 2 | BTIConcepts on GitHub | Free NSLog utility | Free Getter Utility | Leave a PayPal donation.
Are you a newbie? Things you should read:
Definitive Guide To Properties | UITableView Series | A Model (Object) Is A Beautiful Thing
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Disagree Dislike Like Awesome