博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS Bug Summarize(Updating...)
阅读量:5892 次
发布时间:2019-06-19

本文共 2196 字,大约阅读时间需要 7 分钟。

hot3.png

this class is not key value coding-compliant for the key XXX.

it is caused by your in-attention,Must you remove a IBOutlet variable but not remove the link in the IB.(2013/01/11)

- in the switch-case struct of Objective-C,it can not new or alloc any object.

just test it.(2013/01/11)

- long press event...

- if the table can not scroll to pull down,please make sure that the table's content size is a little bigger than the frame,or set the size is the frame.(2013/01/25)

- about IAP bug,if all the code is prepared,but the bug is exist,there are these ways to fixed:

     i) delete the app in the device,then test again;

    ii) check the store observer has been added;

    iii) if purchase is okay,but restore is always failed,delete app in the device or change the test account;(2013/01/25)

Warnings:

- The Copy Bundle Resources build phase contains this target's Info.plist file

This issue maybe caused by you when you change the name of the app in Xcode.To fix it,you should do like this:

1) Go into Build Phases

2) Select "Copy Bundle Resources"

3) Find out Info.plist file and select it

4) Press "-" to remove it from list

- Could not change executable permissions on the application.

It means you have used one bundle identifier to build two apps into one device,it maybe caused by you when you rename the app in the Xcode.So you need to remove the old app in the device first,then build and run again.

8/14/2013

Update:How to remove the reference warning

Sometimes you will catch some warnings about Third-Library reference,because at first you used them,but later you have remove it from project,so if you don't check the Build Settings in the Xcode,you will receive the warnings that can not find the SDK/Library.

So you should do like this to fix them:

1- Click on your project and select target;

2- Select Build Settings tab;

3- Find out "Search Path",then delete the search path of the third-library

do like this,the warnings can be remove from your project.

9/13/2014

Issue:CUICatalog:Invalid asset name supplied:(null), or invalid scale factor:2.000000

This means that you call the method: imageNamed like this:

[UIImage imageNamed:nil];

Blues

转载于:https://my.oschina.net/u/913344/blog/101586

你可能感兴趣的文章
微信小游戏初试
查看>>
7.ORM与SQLAlchemy (3) - flask-migrate数据库迁移
查看>>
Shiro权限管理(一)——介绍
查看>>
scrapy学习之路5(selenium集成到scrapy下(crawspider未测试))
查看>>
开源组件
查看>>
【354天】跃迁之路——程序员高效学习方法论探索系列(实验阶段112-2018.01.25)...
查看>>
AIDL的基本使用
查看>>
使用开源工具fluentd-pilot收集容器日志
查看>>
作为设计师的我做了个小 APP,并且有稳定的被动收入
查看>>
CentOS7安装ecshopV2.7.3过程中mysql不支持问题
查看>>
TextView SpannableString 使用之实现可点击超链接效果
查看>>
three.js 中文文档 6.创建文字
查看>>
mongodb学习笔记
查看>>
把你的网站升级成HTTP/2
查看>>
Lodash源码讲解-compact函数
查看>>
正则表达式 深入浅出2--从java API开始
查看>>
基于概率论的分类方法:朴素贝叶斯
查看>>
commonJS模块规范
查看>>
如何优雅的退出应用和处理崩溃异常并重启
查看>>
Day02 - JavaScript + CSS Clock
查看>>