Advertise here




Advertise here

Howdy, Stranger!

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

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

iPad Custom Font Issue

BrianSlickBrianSlick Posts: 9,316Tutorial Authors, Registered Users
Client has provided some custom font files for an iPad app. I have:

- Added them to the project
image

- Included them in info.plist
image

- Declared some constants
#define kClanProNarrowBoldFontName @\"ClanPro-NarrowBold\"
#define kClanProNarrowBookFontName @\"ClanPro-NarrowBook\"
#define kClanProNarrowMediumFontName @\"ClanPro-NarrowMedium\"
#define kClanProNarrowThinFontName @\"ClanPro-NarrowThin\"


- And built a sample table

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;
}


However, this is the result:

image

The result is the same in the simulator and on the device.

The same fonts displayed in Mail on my Mac:

image

As you can see, the four fonts are distinct. But for some reason, the iPad is displaying 3 of them the same. And the font has been applied, but the line weight is not correct.

I have shared these font files with another developer, and he observed the same results. So I do not currently have a reason to believe it is an issue with setup, file names, etc.

In order to verify that the font names are correct, I did this:

NSArray *array = [UIFont fontNamesForFamilyName:@\"ClanPro\"];
NSLog(@\"array is: %@\", [array description]);


...which results in:

array is: (
\"ClanPro-NarrowBook\",
\"ClanPro-NarrowBold\",
\"ClanPro-NarrowMedium\",
\"ClanPro-NarrowThin\"
)


...which is the same as the strings I'm already using. So no apparent issue there. And the OS clearly knows that I have four distinct styles in this font family.

The other developer conducted a test of the UIFont objects that get created, and here is what he found:

...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])


3 of them are the same object. This would explain why 3 of them display the same.

However, that doesn't help me with what to do about it. Mail, FontBook, etc. everything on my Mac shows 4 distinct fonts. This would suggest that either the font files themselves are fine, or Mac OS is more lenient about what it can handle. What can I do to get them to display correctly on the iPad?
Post edited by BrianSlick on

Replies

Sign In or Register to comment.