bug

作者: 娘亲Joanna | 来源:发表于2017-12-15 14:28 被阅读11次

    开发日常遇到的bug

    self.items = [NSArray new];//1维数组
    
    self.items[0][1]; //二维数组
    当这样取值的时候,就会出现
     -[NSTaggedPointerString count]: unrecognized selector sent to instance
    这个错误
    
    
    本来1维数组的取值方式为 self.items[1];
    
    

    1.上架 二进制文件被拒

    Guideline 5.1.5 - Legal - Privacy - Location Services

    Your app uses location services but does not clarify the purpose of its use in the location modal alert. Apps that collect, transmit, or use location data must notify and obtain the user’s consent prior to accessing this data.

    Please see attached screenshots for details.

    Next Steps

    To resolve this issue, please specify why the app is requesting the user's location in the location permission modal alert.

    Resources

    For additional information and instructions on configuring and presenting an alert, please review the Requesting Permissionsection of the iOS Human Interface Guidelines and the Information Property List Key Reference. You may also want to review the Technical Q&A QA1937: Resolving the Privacy-Sensitive Data App Rejection page for details on how to provide a usage description for permission request alerts.

    被拒绝的图片提示 attached screenshots

    解决办法
    修改了定位的descriptionKey里面的描述,说明了使用定位的目的。

    相关文章

      网友评论

          本文标题:bug

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