浏览代码

Remove hardcoded title.fontSize to reset to defaults (#3080)

Dima Loktev 6 年前
父节点
当前提交
0d41a06c73
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      lib/ios/RNNTitleOptions.m

+ 1
- 1
lib/ios/RNNTitleOptions.m 查看文件

@@ -43,7 +43,7 @@
43 43
 }
44 44
 
45 45
 - (NSNumber *)fontSize {
46
-	return _fontSize ? _fontSize : @(20);
46
+	return _fontSize ? _fontSize : nil;
47 47
 }
48 48
 
49 49
 @end