老师,为什么 模拟器显示的界面 和 我画的界面 总是不一样,有时候按钮位置乱了,有时候距离边框和mainstory里我自己画的差很远,这都是怎么回事?sizeclass 关闭了
2016-02-01
var year = yearofbirth.text.toInt()
出编译错误啊。
Value of optional type "String?" not unwrapped; did you mean to use '!' or '?'?
出编译错误啊。
Value of optional type "String?" not unwrapped; did you mean to use '!' or '?'?
2016-01-28
根据最新的Foundation, flag参数NSCalendarUnit直接调用year就可以了,NSCalendarOptions还需要加上一个label“rawValue”, NSCalendarOptions(rawValue:0), 这样编译才不会报错
2016-01-21
素材地址 https://github.com/fifths/Zodiac/tree/master/zoo/Assets.xcassets
2016-01-03
素材下载地址https://github.com/fifths/Zodiac/tree/master/zoo/Assets.xcassets
2016-01-03
不需要代理也可以回收键盘
//按空白处回收键盘
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
self.accountTextField.resignFirstResponder()
self.passwordTextField.resignFirstResponder()
}
//按空白处回收键盘
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
self.accountTextField.resignFirstResponder()
self.passwordTextField.resignFirstResponder()
}
2016-01-02