We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
到目前为止,我发现的最好的东西是 WWDC 2011 会议视频 会议 102 - 实现 UIViewController Containment。
The best thing I have found so far is the WWDC 2011 Session Video Session 102 - Implementing UIViewController Containment.
除了 hypercrypt 已经提到的 WWDC 会议视频会议 102 - 实现 UIViewController Containment 之外,< a href="https://developer.apple.com/videos/wwdc/2012/">Apple WWDC 2012 会议“iOS 上视图控制器的演变”也涵盖了这个主题,示例代码是示例代码包的一部分:
https://developer.apple.com/devcenter/download.action?path=/wwdc_2012/wwdc_2012_sample_code/wwdc_2012_session_code.dmg
这里还有一个例子:
https://github.com/toolmanGitHub/stackedViewControllers
In addition to the WWDC Session Video Session 102 - Implementing UIViewController Containment that hypercrypt already mentioned, Apple WWDC 2012 session on "The Evolution of View Controllers on iOS" also covers this topic and the example code is part of the sample code package:
https://developer.apple.com/devcenter/download.action?path=/wwdc_2012/wwdc_2012_sample_code/wwdc_2012_session_code.dmg
There's also an example here:
https://github.com/toolmanGitHub/stackedViewControllers
此 IBAction 触发两个 VC 之间的转换:
this IBAction triggers the transition between two VCs:
我发现这个例子对我非常有用
http://sandmoose.com /post/35714028270/storyboards-with-custom-container-view-controllers
他们在 github 上有源代码:
https://github.com/mluton/EmbeddedSwapping
I found this example very useful for me
http://sandmoose.com/post/35714028270/storyboards-with-custom-container-view-controllers
And they have source on github:
https://github.com/mluton/EmbeddedSwapping
可以这样:
http://subjective- Objective-c.blogspot.com/2011/08/writing-high-quality-view-controller.html
足以满足您的需求吗?
Could this:
http://subjective-objective-c.blogspot.com/2011/08/writing-high-quality-view-controller.html
Be enough for your needs?
不知道这是否是一个“好的”示例,但是您可以从 https:// /bitbucket.org/javieralonso/jaacordeonviewcontroller/overview
这是一个完整的手风琴隐喻容器视图控制器
don't know if this is a "good" example, but you can get a free Container ViewController from https://bitbucket.org/javieralonso/jaacordeonviewcontroller/overview
It's a full accordion metaphor container view controller
这些是我最喜欢的(iOS7-ready)教程/示例(所有三个都在 github 上提供了源代码):
视图控制器包含
自定义容器视图控制器转换
交互式自定义容器视图控制器转换
然后,当然,Apple 提供了关于该主题的完整文章,我认为这非常有价值:
创建自定义容器视图控制器
These are my favorite (iOS7-ready) tutorial / examples on the subject (all three have source code available on github):
View Controller Containment
Custom Container View Controller Transitions
Interactive Custom Container View Controller Transitions
And then, of course, Apple offers a whole write-up on the subject which I find invaluable:
Creating Custom Container View Controllers