Попробуйте добавить изображение как вид изображения в кнопке:
var button = Ti.UI.createButton({backgroundColor:'black',title:'General Info',textAlign:'left',width:210, height:30,top:20,left:20, color:'white', font:{fontFamily:'AppleGothic',fontWeight:'bold',fontSize:20}});
var icon = Ti.UI.createImageView({
image : "../images/icon.png",
height : 20,
width :20,
left : 5
});
button.add(icon)