弱引用,在对象释放后置为 nil,避免错误的内存访问。
iOS weak 关键字漫谈
在 ARC 模式下编程时,指针变量一定要用 weak 修饰,只有基本数据类型和结构体需要用 assgin ,例如 delegate ,一定要用 weak 修饰。
iOS开发中ARC下的assign和weak区别