1
傢伙您好我有喜歡的圖片波紋管的視圖組織中的應用:打開一看,是不是根之一,從根視圖保持tabbarcontroller(SWIFT)
當用戶打開附件時,我的應用程序必須打開查看B(從圖片)(我有另一個問題Open specific view when user opens an attachment,我已經找到了這個問題的答案)。我已經完成了,我的問題是,當我打開查看B tabbar不存在。
有沒有辦法,當我打開視圖B我看到的是根視圖的一部分的tabbar?
更新: 下面是我用從AppDelegate.swift文件打開視圖代碼:
func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool {
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewControllerWithIdentifier("AddComment") as! AddCommentViewController
window?.rootViewController = vc
}
感謝完美的作品,感謝您的幫助。 – JuValencia
謝謝你的回答! –