我已经构建了一个离子应用程序,在ios中Splash屏幕正在缩放(Disorted)。 当我运行“离子Cordova资源”时,在/ resources / ios / splash /中创建的图像看起来很好。但是当我使用xCode在模拟器或物理设备中运行应用程序时,图像会缩放并显示缩放。
这是我的应用信息:
cli包:(/ usr / local / lib / node_modules)
cordova (Cordova CLI) : 7.1.0
全球套餐:
@ionic/app-scripts : 3.1.2
Cordova Platforms : ios 4.5.4
Ionic Framework : ionic-angular 3.9.2
本地包裹:
ios-deploy : 1.9.2
Node : v8.9.1
npm : 5.5.1
OS : macOS Sierra
Xcode : Xcode 9.1 Build version 9B55
系统:
<?
$clientEncode = urlencode("https://api.yelp.com/oauth2/token?client_id=MY_CLIENT_ID&client_secret=MY_CLIENT_SECRET");
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $clientEncode);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, "grant_type=client_credentials");
curl_setopt($curl, CURLOPT_HTTPHEADER, array("Content-Type: application/x-www-form-urlencoded"));
$response = curl_exec($curl);
$array = json_decode($response, true);
$arrayVal = array_values($array);
$bearer_token = $array->access_token;
echo '<pre>';
var_dump($array);
echo '</pre>';
?>
请帮忙! 在此先感谢
答案 0 :(得分:0)
您的资源文件夹是什么样的?我可以和你分享我的结构吗?
/resources
-- /android
-- icon.png
-- icon.png.md5
-- /ios
-- splash.png
-- splash.png.md5
首先,现在空您的资源文件夹。仅放置2个源文件-splash.png (1024x1024)
和icon.png (2732x2732)
。接下来,运行ionic cordova resources
。就像上面的结构一样。
希望这对您有所帮助。