zoukankan      html  css  js  c++  java
  • ios 图形学习笔记

    一、显示文本:

    1.UIFont,用于设置显示的字体

    初始化方法:fontNamesForFamilyName:(类方法)

          fontWithName:size:(类方法)

    2.绘制文本的方法:

    NSString的drawAtPoint:withFont:

    3.文本颜色UIColor:

    初始化方法:colorWithRed:green:blue:alpha: (类方法)

    从一个实例获得具体的某个颜色值方式如下:

    UIColor *steelBlueColor = [UIColor colorWithRed:0.3f
    green:0.4f
    blue:0.6f
    alpha:1.0f];
    CGColorRef colorRef = [steelBlueColor CGColor];
    const CGFloat *components = CGColorGetComponents(colorRef);
    NSUInteger componentsCount = CGColorGetNumberOfComponents(colorRef);
    NSUInteger counter = 0;
    for (counter = 0;
    counter < componentsCount;
    counter++){
    NSLog(@"Component %lu = %.02f",
    (unsigned long)counter + 1,
    components[counter]);

    4.绘制图片:

    imageNamed: 类方法

    imageWithData:类方法

    initWithContentsOfFile:实例方法(用于初始化)

  • 相关阅读:
    BiLiBiLi爬虫
    12-UE4-控件类型
    11-UE4-UMG UI设计器
    10-UE4-蓝图定义简介
    UE4-目录结构简介
    UE4-字符串
    UE4-基类
    Redis-事物
    Redis的主从配置
    Redis持久化-AOF
  • 原文地址:https://www.cnblogs.com/dokaygang128/p/3498999.html
Copyright © 2011-2022 走看看