小编Dee*_*pak的帖子

企业分发提示消息说(null)想要安装{app name}

在此输入图像描述

这是在点击服务器URL后出现的弹出窗口.

我在服务器上上传了一个企业版iOS版本.现在我们尝试下载版本然后弹出来了.我想将空字段替换为"[我的域名]".

我有类似问题的堆栈溢出链接 -

Ad-Hoc分发提示消息说(null)想要安装{app name}

但在我的情况下,在两种情况下都会出现问题,要么通过(下载)电子邮件,要么直接浏览到包含链接的网页(已上传构建的服务器URL).

请建议我解决方案.谢谢

iphone ipad ios

5
推荐指数
1
解决办法
1465
查看次数

为什么两个不同的串行队列会在 swift 中造成死锁?

我有一个自定义串行队列,在该队列中同步调用主队列。这正在造成僵局。根据我的理解,两者都是独立的队列,因此它应该可以工作,并且两个(步骤 3 和步骤 5)同步块都应该执行。谁能解释为什么会产生僵局?下面是我的游乐场代码。

func serialQueueTest() {
    let customSerialQueue = DispatchQueue(label: "com.test.dipak")
    
    print("Step 1")
    customSerialQueue.async {
        print("Step 2")
       
        DispatchQueue.main.sync {
            print("Step 3: Inside main sync queue")
        }
    }
    
    print("Step 4")
    customSerialQueue.sync {
        print("Step 5: Inside Custom Serial Queue sync queue")
    }
}
Run Code Online (Sandbox Code Playgroud)

objective-c grand-central-dispatch swift dispatch-queue

3
推荐指数
1
解决办法
874
查看次数

Xcode 15:Xcode 找不到任何匹配的 iOS App Store 配置文件

我有 Xcode 版本 15.0 (15A240d),在成功存档后在应用商店上传时出现以下错误。我检查了我的配置文件和证书是否有效,并且我能够在 XCode 14.3.1 上上传应用程序。

错误1: "No profiles for 'bundle Identifier' were found. Xcode couldn't find any iOS App Store provisioning profiles matching 'bundle Identifier'."

错误2: "Cloud signing permission error

You haven't been given access to cloud-managed distribution certificates. Please contact your team's Account Holder or an Admin to give you access. If you need further assistance, contact Apple Developer Program Support at https://developer.apple.com/contact/."

在此输入图像描述

我尝试过以下解决方案:

  1. 检查配置文件和证书的有效性。

  2. 这里提到的解决方案
    Xcode 找不到任何与 [bundle ID] 匹配的 iOS App Store 配置文件

xcode ios provisioning-profile xcode15

2
推荐指数
1
解决办法
1490
查看次数