質問編集履歴

1

各処理時間を追加しました。

2016/04/12 08:06

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -43,3 +43,55 @@
43
43
  }
44
44
 
45
45
  ```
46
+
47
+ TextView
48
+
49
+ ---
50
+
51
+
52
+
53
+ ```Swift
54
+
55
+ cell!.TextView.text = tweet!["text"].stringValue;
56
+
57
+ ```
58
+
59
+ 0.0032秒
60
+
61
+ nameLabel
62
+
63
+ ---
64
+
65
+ ```Swift
66
+
67
+ cell!.nameLabel.text = tweet!["user"]["name"].stringValue;
68
+
69
+ ```
70
+
71
+ 0.0012秒
72
+
73
+ screenNameLabel
74
+
75
+ ---
76
+
77
+ ```Swift
78
+
79
+ cell!.screenNameLabel.text = "@" + tweet!["user"]["screen_name"].stringValue;
80
+
81
+ ```
82
+
83
+ 0.0014秒
84
+
85
+ iconImage
86
+
87
+ ---
88
+
89
+ ```Swift
90
+
91
+ let url : NSURL = NSURL(string:tweet!["user"]["profile_image_url"].stringValue.stringByReplacingOccurrencesOfString("normal", withString: "bigger"))!
92
+
93
+ cell!.iconImage.af_setImageWithURL(url,placeholderImage: UIImage(named: "icon_placeholder")!)
94
+
95
+ ```
96
+
97
+ 0.003秒