一些总结

1.

当工程的

Paste_Image.png

为release模式时,在调试窗口使用 po 命令会显示:variable is not invalid

2.

应用图标有白边.
应用图标 AppIcon 不用做圆角处理,苹果会自动做圆角处理。如果自己做圆角处理,图标可能有白边(我的是5.5英寸应用图标有白边)。

3.

1>应用的下载链接:

NSString *appid = @"123456";
NSString  *str = [NSString stringWithFormat:@"http://itunes.apple.com/cn/app/id%d",appid];[[UIApplication sharedApplication] openURL:[NSURL urlWithString:str]];

2>跳转应用评价界面

NSString *APPID = @"123456";
NSString *urlStr = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=%@&pageNumber=0&sortOrdering=2&mt=8", APPID];
  [[UIApplication sharedApplication] openURL:[NSURL URLWithString:urlStr]];

4.

***"Local declaration of 'XXX' hides instance variable" *** --------warning :
次警告的意思是 :本地变量和成员变量重名了

你可能感兴趣的:(一些总结)