您的位置:首页 > 移动开发 > IOS开发

Phonegap in ios

2016-12-31 02:16 393 查看
版权声明:本文为博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。 本文链接:https://blog.csdn.net/zhangmanfan7264/article/details/53949034 hi,everyone.I'm trying to develop an iOS App using phonegap 3.5. it gives me this error.
ERROR: Method 'hidden_Acticity:' not defined in Plugin 'MyPlugin'
-[CDVCommandQueue executePending] [Line 116] FAILED pluginJSON = [
"MyPlugin807760929",
"MyPlugin",
"hidden_Acticity",
[

]
]
I changed how to solve this problem?,thanks。
Here is my code:
CDVMyPlguin.m
;

    self.Acticity=[[UIActivityIndicatorView alloc]initWithFrame:CGRectMake(100, 200, 120, 120)];
 
    [self.viewController.view addSubview:self.Acticity];

    self.Acticity.hidden=NO;

    self.Acticity.activityIndicatorViewStyle=UIActivityIndicatorViewStyleGray;

    [self.Acticity startAnimating];
    NSLog(@"=================%@",self.Acticity);
    // Create Plugin Result
    CDVPluginResult* pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:@""];
    [self writeJavascript: [pluginResult toSuccessCallbackString:self.scanCallbackId]];
    
    
}



-(void)hidden_Acticity
{

    if(self.Acticity.hidden==NO)
    {
        self.Acticity.hidden=YES;

    }
    
}

In the JS file:
var MyIOSPlugin = {

showLoading:function(success)
    {
        Cordova.exec(success,function(){},"MyPlugin","show_loading",[]);
        
    }

};
var MypluginIOS=
{
      hiddinacticity:function(success)
        {
            Cordova.exec(success,function(){},"MyPlugin","hidden_Acticity",[]);
        }
};

In the HTML file:
<body>
        <input type="button" value="show" οnclick="show()]         <input type="button" value="hidden" οnclick="hidden2();" style="width:100px;height:100px;" />

    </body>
</html>

<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/MyPlguin.js"></script>
<script>

function show() {
    alert("1111111111111");
    MyIOSPlugin.showLoading(function ()
                            {
                            
                            });
}

function hidden2() {
    alert("222222222222222");
   MypluginIOS.hiddinacticity(function ()
                               {
                               
                               });
}

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: