它给我一个错误“无法调用未定义文件的方法createimageview”
var imgpldt= Ti.Ui.createImageView({
image: "sponsors/Home DSL.png"
});
$.pldt.add(imgpldt);
继承人xml:
<Alloy>
<ScrollView class="container vertical whitebg actionBarTop">
<View class="sponsorWrapper blackbg vertical">
<View class="sponsorLogo" id='pldt'/>
<View class="whitebg socialContainer">
<View class="socialWrapper horizontal whitebg">
<ImageView class="top10" id='pldtFB' image="/facebook.png"/>
</View>
</View>
</View>
</ScrollView>
</Alloy>
答案 0 :(得分:0)
Arkaem,
您犯了一个非常小的错误,Ui
将其更改为UI
,如下所示,然后对其进行测试。
var imgpldt= Ti.UI.createImageView({
image: "sponsors/Home DSL.png"
});