模擬Apple Store Airpods刻字功能
Published in
Jul 21, 2022
HW6–7
前期提要:
功能:
- 輸入至TextField即時顯示文字在圖上
- 超過字數,跳通知提示
- 若超過字數將移除最後一個文字
程式碼:
if let text = sender.text{if(text.count > 10){let alertController = UIAlertController(title: "警告", message: "你的文字超過10個字了!", preferredStyle:.alert)let cancelAction = UIAlertAction(title: "OK", style: .cancel)alertController.addAction(cancelAction)self.present(alertController, animated: true)sender.text?.removeLast()}else{label.text = "\(text)"
}}
Github: