1
Q
面板從底部滑動
A
回答
0
檢查PPRevealSideViewController https://github.com/ipup/PPRevealSideViewController,我想你可以找到你需要的東西。 當您點擊新的viewController時,您可以更改偏移量。
AppDelegate.m
MainViewController *main = [[MainViewController alloc] init];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
main = [storyboard instantiateViewControllerWithIdentifier:@"MainViewControllerr"];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:main];
_revealSideViewController = [[PPRevealSideViewController alloc] initWithRootViewController:nav];
_revealSideViewController.delegate = self;
self.window.rootViewController = _revealSideViewController;
MainViewController.m
-(void)popViewController{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
PoppedViewController *pvc = [storyboard instantiateViewControllerWithIdentifier:@"PoppedViewController"];
[self.revealSideViewController pushViewController:pvc onDirection:PPRevealSideDirectionBottom withOffset:_offset animated:_animated completion:nil];
}
PoppedViewController.m
-viewDidLoad{
//...
UITapGestureRecognizer *gesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(getFullView)];
gesture.delegate = self;
[self.view addGestureRecognizer:gesture];
}
-getFullView{
[self.revealSideViewController changeOffset:0.0f forDirection:PPRevealSideDirectionLeft];
}
相關問題
- 1. 從頂部滑動面板
- 2. 從頁面底部的div中滑動?
- 3. 從屏幕底部的引導滑動面板
- 4. 從底部滑動div
- 5. 從底部滑動視圖
- 6. 面板,從頂部滑到底部的Android
- 7. 底部面板
- 8. 從底部到頂部滑動div
- 9. 通過HTML,CSS和JS滑動底部面板
- 10. jQuery滑動到頁面底部
- 11. 在底部面板
- 12. 自動滾動面板到底部
- 13. 從右側滑動面板
- 14. 滑動面板
- 15. 使用SlidingPaneLayout從底部滑動
- 16. 從底部滑動導航菜單
- 17. 從jQuery底部向上滑動?
- 18. Bootstrap3浮動按鈕面板底部
- 19. 標題爲格 - 從底部滑道 - 滑出底部
- 20. JQuery Animate()從頁面底部向上滑動div
- 21. 如何在Scroll上從屏幕底部滑動/滑動佈局?
- 22. 滑動面板jquery
- 23. WPF滑動面板
- 24. Android滑動面板
- 25. 滑動面板WPF
- 26. 與滑動面板
- 27. 滑動面板 - jQuery
- 28. jquery滑動面板
- 29. Reactjs滑動動畫滑動面板
- 30. UIGestures從兩手指向下滑動從頂部到底部
當我嘗試設置(安裝pod後),我得到文件未找到。你可以幫我嗎? –
IgorNikolaev
好吧,也許你沒有寫出正確的pod文件。檢查此解決方案:http://stackoverflow.com/questions/25970560/prefix-pch-reactivecocoa-racextscope-h-file-not-found-error/26162228#26162228 – euthimis87
沒有工作。我寫了pod'link_with ['test','testTests'] platform:ios pod'PPRevealSideViewController','〜> 1.1'。因爲1.2.1沒有安裝。 – IgorNikolaev