一、给textfield加提示字的颜色
username.attributedPlaceholder =NSAttributedString(string:"用户名",attributes:[NSForegroundColorAttributeName:UIColor .white])
二、解析Json
import SwiftyJSON
class UserModel: NSObject {
var access_token:String =""
var expires_in:String =""
init(json:JSON){
access_token=json["access_token"].stringValue
expires_in=json["expires_in"].stringValue
}
}
三、xib的坑配置约束条件,不能像android一样相对布局,不同屏幕需要适配