Snapchat喜欢在钛合金的视图之间滑动

时间:2014-11-21 04:31:30

标签: android ios titanium titanium-alloy

有没有人知道如何使用与此框架https://github.com/cwRichardKim/RKSwipeBetweenViewControllers类似的Titanium Alloy在视图功能之间加入滑动。

我到处搜索,似乎找不到任何例子。在现有的框架中,钛是否存在或不可能存在?

1 个答案:

答案 0 :(得分:1)

您可以在这里看到可滚动的钛金属

http://docs.appcelerator.com/titanium/3.0/#!/api/Titanium.UI.ScrollableView

var win = Ti.UI.createWindow();

var view1 = Ti.UI.createView({ backgroundColor:'#123' });
var view2 = Ti.UI.createView({ backgroundColor:'#246' });
var view3 = Ti.UI.createView({ backgroundColor:'#48b' });

var scrollableView = Ti.UI.createScrollableView({
  views:[view1,view2,view3],
  showPagingControl:true
});

win.add(scrollableView);
win.open();

由于