javaSEがiOSアプリデザイン、開発に挑む日記

本業java SEがswift、デザインの勉強したことを残しておくブログ

2015-06-04から1日間の記事一覧

swift アプリでテキストの文字数制限

簡単だけどメモ htmlみたいにmaxlengthで制御できたら良いのに... func textField(textField: UITextField, shouldChangeCharactersInRange range: NSRange, replacementString string: String) -> Bool { // 変更後の内容を作成する var tmpStr = textField…