任何示例代碼,如視圖開關,如谷歌加,附近圈到接收?查看開關,如谷歌加
0
A
回答
2
我做這個很相似,你想要什麼,我認爲。
0
如果我明白你的問題正確,這將幫助。這裏Title2視圖添加了動畫,同時Title1.view被刪除。你可以寫類似的代碼進行正確的過渡
-(void)handleLeftTransition:(id)sender
{
if(![self.view.subviews containsObject:title2.view])
{
title2.view.frame = CGRectMake(320, 20, 320, 350);
[self.view addSubview:title2.view];
[UIView animateWithDuration:0.5f
animations:^{
title2.view.frame = CGRectMake(0, 20, 320, 350);
title1.view.frame = CGRectMake(-320, 20, 320, 350);
}
completion:^(BOOL finished){
if([self.view.subviews containsObject:title1.view])
[title1.view removeFromSuperview];
}];
}
}
4
@Hubert我已經做了一些調整,以你的代碼,現在你可以滾動topScrollView和移動bottomScrollView繼承人的代碼
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{
if (scrollView == self.bottomScrollView) {
//i dont know where this number came from 2.46153846
float bOffset = self.bottomScrollView.contentOffset.x/2.66666666666667;
NSLog(@"%f",self.bottomScrollView.contentOffset.x);
NSLog(@"%f",self.topScrollView.contentOffset.x);
CGPoint theOffset = CGPointMake(self.bottomScrollView.contentOffset.x, self.topScrollView.contentOffset.y);
theOffset.x = bOffset;
[self.topScrollView setContentOffset:theOffset animated:NO];
}
// if the TopScrollView is Moved
if (scrollView == self.topScrollView) {
float bOffset = self.topScrollView.contentOffset.x*2.66666666666667;
CGPoint theOffset = CGPointMake(self.topScrollView.contentOffset.x, self.bottomScrollView.contentOffset.y);
theOffset.x = bOffset;
[self.bottomScrollView setContentOffset:theOffset animated:NO];
}
}
0
是that你想找什麼?
相關問題
- 1. 如何使用谷歌應用程序腳本打開查看谷歌表格
- 2. 谷歌街道查看API
- 3. 谷歌地圖Android API v2動畫谷歌地圖查看
- 4. 如何開發應用的谷歌加
- 5. 禁止開入使用谷歌文檔查看器
- 6. 打開谷歌地圖iOS應用內查看
- 7. 谷歌地圖 - 查看相關的街景從infowindow按鈕
- 8. 谷歌分析查看由用戶ID
- 9. 試圖預緊谷歌地圖查看
- 10. 谷歌文檔查看器不工作
- 11. 谷歌Chrome PDF查看器:媒體
- 12. 谷歌文檔查看器,在IE
- 13. 查看tabmenu點擊谷歌分析
- 14. 安卓網站查看谷歌登錄
- 15. 谷歌VR在iOS上查看側面
- 16. 谷歌文檔查看器的API
- 17. 開關查看薑餅
- 18. 谷歌開
- 19. 谷歌加或Facebook風格的圖像彈出查看器?
- 20. 信號SIGABRT錯誤,當添加谷歌地圖查看
- 21. 谷歌融合表添加列以查看
- 22. 谷歌地圖第一次查看網站時不加載correclty
- 23. 檢查谷歌reCaptcha服務是打開還是關閉
- 24. 增加價值翻轉到谷歌開關
- 25. 如何使任何人都可以查看谷歌的BigQuery相關項目
- 26. 如何使月份查看日曆如谷歌日曆?
- 27. 谷歌加應用開發語言
- 28. 展開谷歌牌
- 29. 看不到谷歌標記
- 30. 谷歌查詢
不錯。我將它添加到代碼中。 – 2012-01-07 14:18:18
@Alex 2.66666666666667是從哪裏來的? – 2012-03-05 10:06:49
ohh這是我的錯誤...如果我沒有錯...這是scrollview的大小劃分的視圖的大小或類似的東西...但它的錯誤...正確的數字是2.46153846 ...對不起關於那個 – Alex 2012-03-05 18:03:52