会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
廖利君
iOS开发
博客园
首页
新随笔
联系
订阅
管理
IOS 异步获取数据并刷新界面dispatch_async的使用方法
dispatch_async(dispatch_get_global_queue(0, 0), ^{
// 处理耗时操作的代码块...
//通知主线程刷新
dispatch_async(dispatch_get_main_queue(), ^{
//回调或者说是通知主线程刷新,
});
});
posted on
2017-07-21 11:02
廖利君
阅读(
487
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部