模擬Apple Store Airpods刻字功能

HW6–7

Photo by Dagny Reese on Unsplash

前期提要:

功能:

  1. 輸入至TextField即時顯示文字在圖上
  2. 超過字數,跳通知提示
  3. 若超過字數將移除最後一個文字

程式碼:

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:

--

--