app 要实现这样的效果是只能够用源生开发的么?
使用第三方的混合开发是不是实现不了这些功能,如果可以的话要怎么做
我有个项目是用appcan开发的,客户想实现这些功能,我要怎么实现
PHP中文网2017-04-18 09:45:22
這種的我記得他們有提供這樣的方法吧,右滑之類的。
這樣麼,我搜了一下:
uexWindow.onSwipeRight = function(){
//TODO
}
如果用js也可以實現吧,右滑直接history.back(-1);
然後點擊返回頂部是什麼鬼。
?
黄舟2017-04-18 09:45:22
http://www.jianshu.com/p/e183...
http://www.jianshu.com/p/7379...
網上很多資料,自己去實踐吧
PHP中文网2017-04-18 09:45:22
1.右劃回上一頁,可以加入手勢操作
例如:
UISwipeGestureRecognizer *swipeGesR = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(swipeGes:)];gnizer alloc] initWithTarget:self action:@selector(swipeGes:)];
swipeGesR.direction = UISwipeGestureRecognizerDirectionRight;
[_headImageV addGestureRecognizer:swipeGesR];
-(void)swipeGes:(UISwipeGestureRecognizer *)swipe
{
//滑動事件的操作。 。 。
}
2.點選「欄位」回到頂部,用UITableView清單這樣操作
例如:
NSInteger row = 0;
[_tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:row inSection:0] animated:Yoroll;