From f1e7c2fe01308370db58b5701be1348ce8278167 Mon Sep 17 00:00:00 2001 From: LHY <768805503@qq.com> Date: Wed, 3 Mar 2021 15:40:58 +0800 Subject: [PATCH] =?UTF-8?q?Update=202.=E7=AC=AC=E4=BA=8C=E9=A2=98.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../2.\347\254\254\344\272\214\351\242\230.md" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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*`。