我刚加载了Xcode 6 GM种子.现在我想提交我的应用程序的更新.到目前为止存档工作.但当我点击"提交"时,一旦上传加载栏出现Xcode崩溃.
我需要优胜美地吗?
我不得不从Apple下载Application Loader,因为Xcode找不到它.
我有一个SKSpriteNode,我淡出了 baseNode.runAction(SKAction.fadeOutWithDuration(0.5))
精灵有一个孩子.也是一个SKSpriteNode.(图像中的红色块)
当baseNode淡出时,存在die子节点的轮廓.
什么是避免这种淡出与其子整个节点的最佳方式同时?我想在子节点中播放纹理动画.如此扁平化是没有解决方案的.
我已经更新了条纹SDK到最新版本21.0.1通过的CocoaPods。
当我构建项目时,我总是收到以下错误:
No such module 'Stripe3DS2'
在STP3DS2AuthenticateResponse.swift
文件中。
通过在我的 中导入 Firebase 框架,我总是收到以下警告AppDelegate.swift
:
import Firebase -> File 'AppDelegate.swift' is part of module 'Firebase'; ignoring import
Run Code Online (Sandbox Code Playgroud)
以及以下错误didFinishLaunchingWithOptions:
:
FIRApp.configure() -> Use of unresolved identifier 'FIRApp'
Run Code Online (Sandbox Code Playgroud)
我使用 CocoaPods 导入了 Firebase 框架。那是我的 Podfile:
# Uncomment this line to define a global platform for your project
# platform :ios, '9.0'
target 'Firebase' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Firebase
pod 'Firebase'
pod 'Firebase/Messaging'
end
Run Code Online (Sandbox Code Playgroud)
知道我做错了什么吗?