__weak不能使用问题

问题描述:输入法加了一个新类库,报如下错误:

The current deployment target does not support automated __weak references

问题解决

ARC是从4.2以上版本开始支持的,但是不能使用__weak。

从5.0开始支持所有ARC。

在project->info->ios Deployment Target 将target版本改为5.0或者5.0以上。