Better loading screen

I have tried loading screen of $ionicloading and $cordovaProgress, but both of these are unable to work on all platforms. Is there an alternative? or do make something wrong? Below are codes I an using.

$ionicLoading.show({
content: ‘’,
animation: ‘fade-in’,
showBackdrop: true,
maxWidth: 200,
showDelay: 5
});
$ionicLoading.hide();

To $ionicLoading, it does not working at my iphone, ios 8. However, if it did work, it will not be hided.

$cordovaProgress.showSimple(true);
$cordovaProgress.hide();

To cordovaProgress, sometime, it did not hide correctly.

Thanks in advance.