5
A
回答
1
從我掛在註釋後
#import <sys/utsname.h>
NSString*
machineName()
{
struct utsname systemInfo;
uname(&systemInfo);
return [NSString stringWithCString:systemInfo.machine
encoding:NSUTF8StringEncoding];
}
結果應該是:
@"i386" on the simulator
@"iPod1,1" on iPod Touch
@"iPod2,1" on iPod Touch Second Generation
@"iPod3,1" on iPod Touch Third Generation
@"iPod4,1" on iPod Touch Fourth Generation
@"iPhone1,1" on iPhone
@"iPhone1,2" on iPhone 3G
@"iPhone2,1" on iPhone 3GS
@"iPad1,1" on iPad
@"iPad2,1" on iPad 2
@"iPhone3,1" on iPhone 4
@"iPhone4,1" on iPhone 4S
我假定這將返回類似@「iPhone5,1」最新模型。然後,只需做這樣
NSString *iphoneType = machineName();
if ([iphoneType [email protected]"iPhone5,1"]){
//image for iphone 5
} else {
//image for the rest
}
支票讓我知道,如果可以算出
相關問題
- 1. iPhone 6的iOS背景圖像
- 2. 拉伸iOS背景圖像
- 3. UITableView的背景圖像 - iOS
- 4. 背景圖像上的iOS
- 5. iOS應用背景圖像
- 6. UITabbar的背景圖像ios
- 7. 調整圖像背景iOS
- 8. 設置一個隨機應用程序背景圖像iOS 6
- 9. LaunchImage和背景圖像不支持3.5「,而支持iOS 6
- 10. 在背景圖像背景圖像
- 11. 自定義UIButton背景圖像顯示在iOS 6但不是iOS 5
- 12. UINavigationBar原始分辨率iPhone 6和6的背景圖像
- 13. 背景圖像
- 14. 背景圖像
- 15. 圖像背景
- 16. 圖像背景
- 17. 背景圖像
- 18. 的iOS UIView的背景圖像
- 19. 爲iOS設置網站背景圖像
- 20. 在iOS上不顯示背景圖像
- 21. UIButton背景圖像拉伸Xcode iOS
- 22. 的iOS - pushViewController無滑動背景圖像
- 23. iOS 7通用背景圖像
- 24. 導航背景圖像xamarin ios
- 25. 支持視網膜背景圖像iOS
- 26. 的iOS使用圖像背景按鈕
- 27. 的iOS UIScrollView的副本圖像背景
- 28. sectionHeader在iOS中的背景圖像
- 29. 背景圖像爲Android和IOS
- 30. iOS - UITableView非靜態背景圖像
計劃的方式是明確的。可能它有什麼「通過Apple批准」? 喜歡用@xxx名字等圖像 –
你是說整個背景是一個圖像? – TheJer
假定它是:) –