我是靠谱客的博主 忐忑荔枝,最近开发中收集的这篇文章主要介绍you are calling a UIKit method that can only be invoked from the UI thread.,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

mono touch开发时长遇到这样的错误: you are calling a UIKit method that can only be invoked from the UI thread.

这是因为,你的代码涉及到MonoTouch.UIKit库中对象,必须通过UI主线程InvokeOnMainThread来处理才行,类似下面的代码段:

using(var pool = new NSAutoreleasePool()) {
    this.InvokeOnMainThread(delegate {
        //...         
    });
}

有时候在并行编程中,通过ui主线程来处理并不能够奏效,这时候需要通过禁用UI线程,这样就不会出错:

var previous = UIApplication.CheckForIllegalCrossThreadCalls;
UIApplication.CheckForIllegalCrossThreadCalls = false;
//....
UIApplication.CheckForIllegalCrossThreadCalls = previous;
注意哦,在mono touch中,UI主线程检查是可选的,并且可以被禁用,无论是全局或局部。

最后

以上就是忐忑荔枝为你收集整理的you are calling a UIKit method that can only be invoked from the UI thread.的全部内容,希望文章能够帮你解决you are calling a UIKit method that can only be invoked from the UI thread.所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部