xcode 6.3 上传应用时会出现'Missing
recommended icon file - The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format'。
在plist文件中 icon files添加
解决方案 :
...
分类:
移动开发 时间:
2015-06-02 17:48:52
阅读次数:
144
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
char a[200010];
int num[200010];
int main(){
gets(a);
int n;
scanf("%d",&n);
int len = strlen...
分类:
其他好文 时间:
2015-05-29 20:24:15
阅读次数:
122
Table 41-1Size (in pixels) of custom icons and imagesAssetiPhone 6 Plus (@3x)iPhone 6 and iPhone 5 (@2x)iPhone 4s (@2x)iPad and iPad mini (@2x)iPad 2 ...
分类:
移动开发 时间:
2015-05-26 15:56:44
阅读次数:
157
px就是pixels(像素),各种手机的像素是不同的,1px就是表示手机屏幕上的一个物理像素点。一块屏幕的分辨率为240*320,那么就是屏幕宽有240个像素点,屏幕高有320个像素点。如果屏幕大小不变,分辨率提高,那么相应的宽高的像素点变多了,这样画面看起来就更清晰,更细腻。dp就..
分类:
移动开发 时间:
2015-05-22 19:20:53
阅读次数:
160
dp(dip): device independent pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA 推荐使用这个,不依赖像素。 px: pixels(像素). 不同设备显示效果相同,一...
分类:
移动开发 时间:
2015-05-20 15:11:52
阅读次数:
133
1.打开根目录下test.jpgBitmap bm = BitmapFactory.decodeFile(Environment.getExternalStorageDirectory().getAbsolutePath()+"/test.jpg");int[] pixels = new int[b...
分类:
移动开发 时间:
2015-05-18 18:37:04
阅读次数:
174
1、屏幕分辨率:屏幕水平和垂直像素个数。2、屏幕像素密度: ppi:全称Pixels Per Inch,每英寸屏幕所拥有的像素数-------》图像的采样率(在图像中,每英寸所包含的像素数目)计算:像素密度=√{(长度像素数^2+宽度像素数^2)}/ 屏幕尺寸注:屏幕尺寸单位为英寸例:分辨率为12....
分类:
其他好文 时间:
2015-05-18 18:29:41
阅读次数:
128
Try the online demo:http://willow-fd.rocq.inria.fr/unshake/OverviewOne common feature of “shaken” images is the presence of saturated pixels. These ar...
分类:
其他好文 时间:
2015-05-18 15:59:41
阅读次数:
462
//Codeclass CMainWindow : public CFrameWnd{protected: int m_nCellWidth; // Cell width in pixels int m_nCellHeight; // Cell height in pixels int m_nRib...
分类:
编程语言 时间:
2015-05-17 00:40:56
阅读次数:
165
1. dip: device independent pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA 推荐使用这 这个,不依赖像素。 这里要特别注意dip与屏幕密度有关,而屏幕密度又与具体的硬件有关,硬件设置不正确,有可能导...
分类:
移动开发 时间:
2015-05-14 09:56:36
阅读次数:
122