アプリのインストール中にコンソールに次の警告が表示され
Installer[some-integer] CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
Installer[some-integer] *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
ます。
質問する
431 次
1 に答える
0
Installer[some-integer] CoreAnimation: 警告、CATransaction がコミットされていないスレッドを削除しました。バックトレースをログに記録するには、環境で CA_DEBUG_TRANSACTIONS=1 を設定します。インストーラー[整数] *
インストーラーはCATransaction
セカンダリ スレッドで使用しています。CATransaction
メインスレッドで使用します。
警告: -[NSImage compositeToPoint:operation:] は、MacOSX 10.8 以降では非推奨です。代わりに -[NSImage drawAtPoint:fromRect:operation:fraction:] を使用してください。
インストーラーは非推奨の API を使用しています。使用する[NSImage drawAtPoint:fromRect:operation:fraction:]
于 2013-09-05T11:09:03.623 に答える