質問編集履歴
1
各処理時間を追加しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -20,4 +20,30 @@
|
|
20
20
|
|
21
21
|
return cell!
|
22
22
|
}
|
23
|
-
```
|
23
|
+
```
|
24
|
+
TextView
|
25
|
+
---
|
26
|
+
|
27
|
+
```Swift
|
28
|
+
cell!.TextView.text = tweet!["text"].stringValue;
|
29
|
+
```
|
30
|
+
0.0032秒
|
31
|
+
nameLabel
|
32
|
+
---
|
33
|
+
```Swift
|
34
|
+
cell!.nameLabel.text = tweet!["user"]["name"].stringValue;
|
35
|
+
```
|
36
|
+
0.0012秒
|
37
|
+
screenNameLabel
|
38
|
+
---
|
39
|
+
```Swift
|
40
|
+
cell!.screenNameLabel.text = "@" + tweet!["user"]["screen_name"].stringValue;
|
41
|
+
```
|
42
|
+
0.0014秒
|
43
|
+
iconImage
|
44
|
+
---
|
45
|
+
```Swift
|
46
|
+
let url : NSURL = NSURL(string:tweet!["user"]["profile_image_url"].stringValue.stringByReplacingOccurrencesOfString("normal", withString: "bigger"))!
|
47
|
+
cell!.iconImage.af_setImageWithURL(url,placeholderImage: UIImage(named: "icon_placeholder")!)
|
48
|
+
```
|
49
|
+
0.003秒
|