美文网首页
一些总结

一些总结

作者: 64fb2e84de0b | 来源:发表于2018-05-05 17:24 被阅读12次

    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 :
    次警告的意思是 :本地变量和成员变量重名了

    相关文章

      网友评论

          本文标题:一些总结

          本文链接:https://www.haomeiwen.com/subject/fdcmittx.html