美文网首页糖糖的iOS专题Swift编程程序员
RunLoop应用 之-- UIImageView/perfor

RunLoop应用 之-- UIImageView/perfor

作者: 我的梦想之路 | 来源:发表于2016-06-22 01:18 被阅读179次

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    self.imageView = [[UIImageView alloc]init];
    [self.view addSubview:self.imageView];
    self.imageView.frame = CGRectMake(100, 100, 200, 200);
    
    NSLog(@"%s",__func__);
    
    // performSelector默认实在default模式下运行的
//    [self.imageView performSelector:@selector(setImage:) withObject:[UIImage imageNamed:@"3D1C83700B0352C54249FD728530DB0E.jpg"] afterDelay:0.5];
    
    /**
     performSelector:用来封装方法的,调用方法
     如果你想实现不同运行模式下做事情不卡顿就可以设置下面这个方法
     你可以在UIImage下载图片的时候让它停住,然后响应触摸事件滑动,让界面不卡顿
     下面这个方法可以提高程序性能
     */
    
    [self.imageView performSelector:@selector(setImage:) withObject:[UIImage imageNamed:@"3D1C83700B0352C54249FD728530DB0E.jpg"] afterDelay:0.5 inModes:@[NSDefaultRunLoopMode,UITrackingRunLoopMode]];
}

最近的质量越来越差了,因为赶项目,所以,晚安,好梦。

相关文章

  • RunLoop应用 之-- UIImageView/perfor

    最近的质量越来越差了,因为赶项目,所以,晚安,好梦。

  • iOS学习-Runloop

    一、是啥 runloop,运行循环,程序运行的过程中循环做一些事情。应用范围: 定时器(timer)、Perfor...

  • RunLoop总结

    什么是RunLoop 就是个运行循环,在程序运行过程中循环做一些事情 应用范畴 定时器(Timer)、Perfor...

  • RunLoop基础

    RunLoop简介 RunLoop运行循环,在程序运行过程中循环做一些事情.如:定时器(Timer)、Perfor...

  • runloop

    1.RunLoop的应用Runloop应用 2.深入理解RunLoop 2.动态计算UITableViewCell...

  • RunLoop -- 相关问题的总结

    1、RunLoop在实际场景的应用 RunLoop -- 在实际开发中的应用 2、RunLoop内部实现逻辑 Ru...

  • iOS-runloop相关

    本篇涵盖runloop解释、应用、利用runloop优化程序等. 1.iOS RunLoop漫谈2.RunLoop...

  • RunLoop

    RunLoop思考 讲讲RunLoop,项目中实际应用? RunLoop内部实现逻辑以及数据结构? RunLoop...

  • UI--UIImageView

    前言:UI控件整理之UIImageView 一、UIImageView 效果图基本代码实现 UIImageView...

  • RunLoop简介

    目录1. RunLoop简介2. RunLoop的相关类3. RunLoop的应用 1. 什么是RunLoop *...

网友评论

    本文标题:RunLoop应用 之-- UIImageView/perfor

    本文链接:https://www.haomeiwen.com/subject/ftggdttx.html