diff --git "a/\345\206\205\345\255\230\347\256\241\347\220\206/2.\347\254\254\344\272\214\351\242\230.md" "b/\345\206\205\345\255\230\347\256\241\347\220\206/2.\347\254\254\344\272\214\351\242\230.md" index 6b9cfed..b50a1ae 100644 --- "a/\345\206\205\345\255\230\347\256\241\347\220\206/2.\347\254\254\344\272\214\351\242\230.md" +++ "b/\345\206\205\345\255\230\347\256\241\347\220\206/2.\347\254\254\344\272\214\351\242\230.md" @@ -3,9 +3,9 @@ - 不能使用 `retain`、`release`、`retainCount`、`autorelease`。 - 不可以使用 `NSAllocateObject`、`NSDeallocateObject`。 - 必须遵守内存管理方法的命名规则。 -- 不需要显示的调用 `Dealloc`。 +- 不需要显式的调用 `Dealloc`。 - 使用 `@autoreleasePool` 来代替 `NSAutoreleasePool`。 - 不可以使用区域 `NSZone`。 -- 对象性变量不可以作为 `C` 语言的结构体成员。 +- 对象型变量不可以作为 `C` 语言的结构体成员。 - 显示转换 `id` 和 `void*`。