From c0e995b572e4e865a3ac848280c0b2b63ad19198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E8=8B=B1=E8=BE=89?= Date: Fri, 15 Mar 2019 16:24:24 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B3=A8=E5=86=8C=E5=B8=83=E5=B1=80?= =?UTF-8?q?=E6=97=B6=E7=9A=84=E7=B1=BB=E5=90=8D=E4=B8=8Etype=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E9=94=99=E8=AF=AF=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tangram/Factory/TangramDefaultLayoutFactory.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tangram/Factory/TangramDefaultLayoutFactory.m b/Tangram/Factory/TangramDefaultLayoutFactory.m index 2310fe8..fbf4bba 100644 --- a/Tangram/Factory/TangramDefaultLayoutFactory.m +++ b/Tangram/Factory/TangramDefaultLayoutFactory.m @@ -49,7 +49,7 @@ - (instancetype)init + (void)registLayoutType:(NSString *)type className:(NSString *)layoutClassName { if (type.length > 0 && layoutClassName.length > 0) { - [[TangramDefaultLayoutFactory sharedInstance].layoutTypeMap setObject:[type copy] forKey:[layoutClassName copy]]; + [[TangramDefaultLayoutFactory sharedInstance].layoutTypeMap setObject:[layoutClassName copy] forKey:[type copy]]; } }