欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 焦点 > Xcode

Xcode

2024/12/21 4:29:52 来源:https://blog.csdn.net/davidson1471/article/details/144452084  浏览:    关键词:Xcode

info.plist

Appearance

Light 关闭黑暗模式
在这里插入图片描述

Bundle display name

设置app名称,默认为工程名

Location When In Use Usage Description

定位权限一共有3个key
1.Privacy - Location When In Use Usage Description
2.Privacy - Location Always and When In Use Usage Description
3.Privacy - Location Always Usage Description
推荐使用1,好上架,以下教程使用Location When In Use Usage Description
在这里插入图片描述

import CoreLocation// 定位
let locationManager = CLLocationManager()
locationManager.requestWhenInUseAuthorization()//定位权限判断
switch CLLocationManager.authorizationStatus() {
case .denied ://未授权
case .notDetermined ://不确定
case .authorizedAlways ://一直允许
case .authorizedWhenInUse ://使用期间允许
case .restricted ://受限的
}// 跳转到app权限设置页面
func openSettings() {guard let settingsURL = URL(string: UIApplication.openSettingsURLString) else {return}if UIApplication.shared.canOpenURL(settingsURL) {UIApplication.shared.open(settingsURL, options: [:], completionHandler: nil)}
}

长按显示的复制、剪切的提示从英文改为中文

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

Archive报错

Invalid large app icon. The large app icon in the asset catalog in “App-lOS.app" can’t be transparent or contain an alpha channel.

打开app图标-> 文件 -> 导出-> 取消勾选Alpha通道
在这里插入图片描述

注:App图标为1024 * 1024 的正方形,不能有圆角;有圆角启动时会有黑色阴影

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com