我使用Xcode 10.3分发我的应用程序。然后,App Store Connect始终拒绝构建。我收到一封电子邮件,说:“该应用程序的info.plist文件应包含一个NSBluetoothAlwaysUsageDescription密钥,并带有面向用户的目的字符串,以清楚,完整地说明您的应用程序为何需要数据。” 我添加了密钥“隐私-蓝牙始终使用说明”。但是得到了拒绝。已经有“隐私-蓝牙外围设备使用说明”,从今天开始还可以,那么如何解决呢?
Xcode 版本:13.4.1 我的应用程序已通过蓝牙连接。但 Xcode 在调试时不断记录“返回连接的附件计数 0”。如何通过更改某些设置来停止日志?因为实在是太烦人了。
正如开发文档所说,Dart doesn't have the keywords public , protected , and private . If an identifier starts with an underscore (_), it's private to its library.但我@protected在 Flutter 框架中发现了很多关键字。这是什么@protected意思?
abstract class InheritedWidget extends ProxyWidget {
const InheritedWidget({ Key key, Widget child })
: super(key: key, child: child);
@override
InheritedElement createElement() => InheritedElement(this);
@protected
bool updateShouldNotify(covariant InheritedWidget oldWidget);
}
Run Code Online (Sandbox Code Playgroud)