TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | Apache 2 |
ReleasedLast Release | Oct 2017 |
Maintained by Valo Lee.
##功能说明
##安装
pod 'VOVCManager'
VOVCManager
文件夹所有源码拽入项目##更新说明
##使用
#import "VVManager.h"
// 在Safari mobile或者其他支持URLScheme的浏览器中打开 app://favorite 即可打开该页面
[VVManager registerURLPath:@"favorite" forHop:[VVHop hopWithMethod:VVHop_Pop aStoryboard:@"Main" aController:@"VOFavoriteMainController"]];
使用storyboard,请设置每个ViewController的Storyboard ID和对应的Class名一致.
其他使用请参考注释.
VOVCFavoriteMainController中有使用代码进行跳转的示例.
[VVManager showPageWithHop:[VVHop makeHop:^(VVHop *hop) {
hop.hop_method(VVHop_Push)
.hop_aStoryboard(@"Main")
.hop_aController(@"VORecentsDetailController")
.hop_parameters(@{@"recentText": @"From VOFavoriteMainController"});
}]];
[VVManager showPageWithHop:[VVHop hopWithMethod:VVHop_Push aStoryboard:@"Second" aController:@"VOTableViewController"]];