UIView

superview subview

Every instance of UIView has a superview property. When you add a view as a subview of another view, the inverse relationship is automatically established. In this case, the BNRHypnosisView’s superview is the UIWindow. (To avoid a strong reference cycle, the superview property is a weak reference.)

视图绘制

视图绘制过程:

  • Each view in the hierarchy, including the window, draws itself. It renders itself to its layer, which is an instance of CALayer.
  • The layers of all the views are composited together on the screen.

视图树中的每个视图绘制自身到其图层(Layer)上,然后将所有的图层组合起来。

bounds & frame

UIView 有两个property frame bounds, 都是距形,可以用CGRect来表示。

Each view has a coordinate system that it uses when drawing itself. The bounds is a view’s rectangle in its own coordinate system. The frame is the same rectangle in its superview’s coordinate system.

  • 视图的frame,是针对其父元素的坐标
  • 视图的bounds,是针对其本身的坐标

CGRect

A structure is not an Objective-C object, so you cannot send messages to a CGRect.
A CGRectis small compared to most objects, so instead of passing a pointer to it, you just pass the entire structure.

  • CGRect是个C struct,不是OC对象;
  • CGRect不大,可以直接放到stack中,所以不需要用指针;
#import "BKAppDelegate.h"
#import "BKHypnosisView.h"

@implementation BKAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    
    // 将BKHypnosisView设置为全屏,即window的bounds
    CGRect firstFrame = self.window.bounds;
    BKHypnosisView *firstView = [[BKHypnosisView alloc] initWithFrame:firstFrame];
    [self.window addSubview:firstView];
    
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

@end
#import "BKHypnosisView.h"

@implementation BKHypnosisView

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
        self.backgroundColor = [UIColor clearColor];
    }
    return self;
}

// 执行自定义的绘制动作
- (void)drawRect:(CGRect)rect
{
    // 找到屏幕中心,self是当前view,由于当前view设置了全屏,可以直接用当前view的bounds
    CGRect bounds = self.bounds;
    CGPoint center;
    center.x = bounds.origin.x + bounds.size.width / 2;
    center.y = bounds.origin.y + bounds.size.height / 2;
    
    // 屏幕宽或高的最小值的一半
    float maxRadius = MIN(bounds.size.width, bounds.size.height) / 2;
    // 屏幕对角线长度的一半
//    float maxRadius = hypot(bounds.size.width, bounds.size.height) / 2;

    
    UIBezierPath *path = [[UIBezierPath alloc] init];
    
    for (float currentRadius=maxRadius; currentRadius>0; currentRadius-=20) {
        // 移动画笔
        [path moveToPoint:CGPointMake(center.x + currentRadius, center.y)];
        // 画圆
        [path addArcWithCenter:center
                        radius:currentRadius
                    startAngle:0.0
                      endAngle:M_PI * 2.0
                     clockwise:YES];
    }
    
    // 设置画笔的宽度
    path.lineWidth=10;
    // 设置pen的颜色
    [[UIColor purpleColor] setStroke];
    // 开始绘图
    [path stroke];
    
    CGRect logoFrame = CGRectMake(center.x/2, center.y/2, bounds.size.width/2, bounds.size.height/2);
    UIImage *logoImage = [UIImage imageNamed:@"logo.png"];
    // 将图片绘制到指定位置
    [logoImage drawInRect:logoFrame];
}

@end

Core Graphic framework

所有以CG开头的类名,都是其缩写。Core Graphic 是用C写的2D绘图框架。
在OC中,OC对象调用Core Graphic framework来绘图,像上面代码中的 UIBezierPath UIImage等。

Core Graphic 中一个最重要的对象是graphics context,一个 CGContextRef 实例。

Right before drawRect: is sent to an instance of UIView, the system creates a CGContextRef for that view’s layer. The layer has the same bounds as the view and some default values for its drawing state. As drawing operations are sent to the context, the pixels in the layer are changed. After drawRect: completes, the system grabs the layer and composites it to the screen.

The Core Graphics functions that operate on the context, like CGContextSetRGBStrokeColor, take a pointer to context that they will modify as their first argument. You can grab a pointer to the current context in drawRect: by calling the function UIGraphicsGetCurrentContext. The current context is an application-wide pointer that is set to point to the context created for a view right before that view is sent drawRect:.

if you create a Core Graphics object with a function that has the word Create or Copy in it, you must call the matching Release function and pass a pointer to the object as the first argument.

下面是直接用Core Graphic来写drawRect方法:

- (void)drawRect:(CGRect)rect
{
    CGContextRef currentContext = UIGraphicsGetCurrentContext();

    CGContextSetRGBStrokeColor(currentContext, 1, 0, 0, 1);

    CGMutablePathRef path = CGPathCreateMutable(); //有create 或 copy关键字,需要手动释放内存
    CGPathMoveToPoint(path, NULL, a.x, a.y);
    CGPathAddLineToPoint(path, NULL, b.x, b.y);
    CGContextAddPath(currentContext, path);

    CGContextStrokePath(currentContext);
    CGPathRelease(path); //调用对应的release方法释放内存

    CGContextSetStrokeColorWithColor(currentContext, color);
}

可以看到CG类的调用稍显复杂,通常使用OC的对象来画图,只有当OC无法实现时(比如画渐变-gradient),才需要写Core Graphic。


本文是对《iOS Programming The Big Nerd Ranch Guide 4th Edition》第四章的总结。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容

  • // //UIView.h //UIKit // //Copyright (c) 2005-2015 Apple ...
    李某lkb阅读 1,698评论 0 0
  • ViewsBecause view objects are the main way your applicati...
    梁光飞阅读 587评论 0 0
  • 本文为大地瓜原创,欢迎知识共享,转载请注明出处。虽然你不注明出处我也没什么精力和你计较。作者微信号:christg...
    大地瓜123阅读 237评论 0 0
  • 文/晨烽 一二线城市到底有多难生存,包租婆会告诉你。 在外走南闯北,说是去看看,实际是无处可去。 虽然辛苦也不落魄...
    晨烽视野阅读 336评论 2 0
  • 一 酒馆之外灯笼似火连成一片,好像要将银装素裹的大地烧起来一样。 酒馆之内一人正在自饮自酌停不下来...
    sakuracat阅读 563评论 1 2