Android Studio Notes

2015-01-21 00:00:00 +0000

IO Unknown Host dl-ssl.google.com

add 64.233.169.97 dl-ssl.google.com to hosts file

Work with unity exports project

use Import instead of Open

Red Filenames

parent folder is under SVN control,but this project not using SVN.

Performselector In Swift

2014-08-19 00:00:00 +0000

I find a method to allow performSelector to work on swift,it's very easy to use

code on gitub

Ios7 Uitextattributefont Replacement

2014-08-14 00:00:00 +0000

iOS7 UITextAttributeFont replacement

REMARK

use NSFontAttributeName

for example: change navigation bar title color and font

navigationBar.titleTextAttributes = [
    NSForegroundColorAttributeName: UIColor(red: 90 / 255.0, green: 103 / 255.0, blue: 145 / 255.0, alpha: 1.0),
    NSFontAttributeName: UIFont(name: "Heiti SC", size: 24),
]
« Prev 1 2 3 4 5 6 Next »