36.NSFontAttributeName UITextAttributeFont

有时候在对文字大小,颜色等设置的时候需要传入一个字典:
    NSMutableDictionary *dict = [NSMutableDictionary dictionary];
    //过期,用NSFontAttributeName替代UITextAttributeFont
    dict[UITextAttributeFont] = [UIFont systemFontOfSize:15];
    //过期,用NSForegroundColorAttributeName,替代UITextAttributeTextColor
    dict[UITextAttributeTextColor] = [UIColor greenColor];

UI开通的key过期了,用NS开头的.
贝瑟尔曲线
    // cpx/cpy 是控制点的位置
    // x/y 是结束点的位置
    CGContextAddQuadCurveToPoint(ctx, controllerX, controllerY, endX, endY);
一共需要三个点,一个开始点GContextMoveToPoint(ctx, startX, startY);
一个是结束点:endX, endY
还有就是控制点,控制点在上或是在下,距离远近,效果都会不同.

你可能感兴趣的:(文字的基本信息设置,贝瑟尔曲线,解疑惑,字体基本信息设置,解疑惑,贝瑟尔曲线)