我有一个 2 团队连接到我的 Apple 开发者帐户。在其中一个中,我们计划启动 Xcode Cloud,但随后我选择“产品”->“Xcode Cloud”->“创建工作流程”,第二个团队出现,我无法更改它。
有人找到解决这个问题的方法吗?
我有这个强制演员:
let cell = tableView.dequeueReusableCell(withIdentifier: "TownTableViewCell",
for: indexPath) as! TownTableViewCell
Run Code Online (Sandbox Code Playgroud)
并试图通过典型方法避免这种情况:
if let cell = tableView.dequeueReusableCell(withIdentifier: "TownTableViewCell",
for: indexPath){
}
Run Code Online (Sandbox Code Playgroud)
但它不正确,我应该如何解决这个问题?