1
티타늄에서 값을받는 iOS 모듈에 CGRect를 설정해야합니다. 어떤 제안?titanium에서 ios-module으로 CGRect Value를 전송하는 방법
티타늄에서 값을받는 iOS 모듈에 CGRect를 설정해야합니다. 어떤 제안?titanium에서 ios-module으로 CGRect Value를 전송하는 방법
알아 냈습니다. 티타늄 사용에
이 :
module.setRect({
x:10,
y:10,
width:100,
height:100
});
와의
IOS 모듈 :-(void)setRect:(id)value{
CGRect rect = [TiUtils rectValue:value];
}