Use a custom font in iOS

Source: Internet
Author: User

1. Identify the font file (. ttf or. odf) you want to use under the resources of your project.

2. Then create a new line in your project's Info.plist file, add key: uiappfonts, type array or dictionary, and set a key value pair under Uiappfonts, key: Item 0, add value to Xxx.ttf (the name of the font, string type), you can add multiple, use the time to write the corresponding font name on the line.

3, in your project to use the font when xx.font = [Uifont fontwithname:@ "XXX" size:20.0], so you can.

iOS code
  1. -(void) Viewdidload {
  2. NSString *imagename = @"Grid.png";
  3. Uiimageview * ImageView = [[Uiimageview alloc] initwithimage:[uiimage Imagenamed:imagename]];
  4. Imageview.frame = CGRectMake ( 250);
  5. UILabel *test = [[UILabel alloc] init];
  6. Test.frame = CGRectMake (215, 50);
  7. Test.font=[uifont fontwithname:@"HAKUYOGuiFanZi3500" size:30];
  8. Test.text = @"original picture";
  9. Test.backgroundcolor = [Uicolor Clearcolor];
  10. [ImageView Addsubview:test];
  11. [Test release];
  12. [Self.view Addsubview:imageview];
  13. [ImageView release];
  14. }

Use a custom font in iOS

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.