我正在研究PhoneGap。javaScript 函数调用时,我需要在 UIButton 上设置图像。
调用目标 c 'Myfunction' 我使用了这个代码——
PhoneGap.exec("MyClass.Myfunction", types);
并且能够调用objective c方法并使用帮助按钮设置图像--
MainViewController * _mainViewController=[[MainViewController alloc]initWithNibName:@"MainViewController" bundle:nil];
[_mainViewController.help setBackgroundImage:[UIImage imageNamed:@"back.png"]forState:UIControlStateNormal];
但得到空对象。
谁能帮我..?