博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS-子线程的消息循环
阅读量:6201 次
发布时间:2019-06-21

本文共 819 字,大约阅读时间需要 2 分钟。

#import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];        // Do any additional setup after loading the view, typically from a nib.    NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(demo) object:nil];    [thread start];        [self performSelector:@selector(demo1) onThread:thread withObject:nil waitUntilDone:NO];   }- (void) demo {        NSLog(@"I am running");    //[[NSRunLoop currentRunLoop] run];    [[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:2]];        NSLog(@"end");}- (void) demo1 {        NSLog(@"I am running on runloop");}- (void)didReceiveMemoryWarning {    [super didReceiveMemoryWarning];    // Dispose of any resources that can be recreated.}@end@end复制代码

转载地址:http://ykaca.baihongyu.com/

你可能感兴趣的文章
Android 编码规范:(一)考虑用静态工厂方法代替构造器
查看>>
BZOJ 3098: Hash Killer II(新生必做的水题)
查看>>
DIY党的福利!鹅厂程序员教你200元以内制作专属分体键盘
查看>>
NYOJ-271 The 3n + 1 problem
查看>>
弃 Java 而使用 Kotlin 的你后悔了吗?| kotlin将会是最好的开发语言
查看>>
JVM(六)为什么新生代有两个Survivor分区?
查看>>
前端小助手 小程序
查看>>
JavaScript 数据类型
查看>>
Ruby 2.5.0概览
查看>>
使用Ballerina构建API网关
查看>>
dockerfile的expose
查看>>
【Mockplus教程】为什么删除多个页面的时候会有提示,如何取消提示?
查看>>
控制器中添加DB类才可以操作数据库表中的数据
查看>>
JS-面向对象
查看>>
zabbix在configure时候遇到的问题
查看>>
大公司都有哪些开源项目~~~简化版
查看>>
GIIS2017亿欧零售峰会:创业者和投资人共话产业新常态
查看>>
API网关为K8S容器应用集群提供强大的接入能力
查看>>
录取通知书玩出新花样,西工大加入AR技术
查看>>
“互联网+”农技推广让种地更简单
查看>>