我尝试使用SwiftPages(https://github.com/GabrielAlva/SwiftPages),它几乎完美无缺。有一件事困扰着我:
当ViewController第一次打开时,标题和加载的ViewController之间会有一点间隙。当我点击屏幕上的任何地方时,它会上升,一切都很好:
With gap on the left, without on the right
我现在的代码并不太复杂:
let VCIDs : [String] = ["LoginViewController", "RegisterViewController"]
let buttonTitles : [String] = ["Login", "Registrieren"]
swiftPagesView.initializeWithVCIDsArrayAndButtonTitlesArray(VCIDs, buttonTitlesArray: buttonTitles)
self.view.addSubview(swiftPagesView)
你有什么想法,为什么会这样,以及我如何解决这个问题?
提前致谢
编辑:似乎是模拟器中的问题 - 在iPhone 6上正常工作:)