0

i tried hard to figure this out but no success. Simple thing i want to do is to change the position of a button. I found rect property but it takes Dimensionobject as value.Sorry, but i'm not able to create object for Dimension. i try this way

var dim = new Dimension();
4

1 回答 1

2

这不是一个真正的Dimension对象。对于 iOS,您可以将其称为字典。

要更改 Titanium 中元素的位置,您应该使用

Ti.UI.createButton({
  left: <left>,
  right: <right>,
  top: <top>,
  bottom: <bottom>,
  width: <width>,
  height: <height>,
});

当然,您不需要设置所有值,而只需设置您需要的所有值。

sizeandrect属性也仅用于读取目的,而不用于写入或更改。

提供了有用的说明

于 2013-04-17T13:29:32.970 回答