Pages

Friday, 4 November 2016

Navigator.notification.activityStart not working in IOS

Hello friend here i am again with very intresting issue and with its solution.
Solving the issue it takes around 2 to 3 days.

The issue is inAPPBrowsser in IOS Platform does not shows the loading spinner.

Please follow below steps:-

Open  CDVThemeableBrowser.m from plugin of inAPPBrowsser folder

Replace below line

self.spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite]; line number 630

with

self.spinner = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];  line number 630

and

self.spinner.frame = CGRectMake(454.0, 231.0, 20.0, 20.0); line number 637

with

self.spinner.frame = CGRectMake(self.view.frame.size.width / 2 - 10, self.view.frame.size.height/ 2 - 10, 20, 20);

and add the cordova Dailog plugin.
Till then keep asking-:)

1 comment: