728x90 반응형 swift2 UITextview Placeholder override func viewDidLoad() { super.viewDidLoad() self.contentTextView.delegate = self self.contentTextView.text = "content".localized() } func textViewDidBeginEditing(_ textView: UITextView) { if textView.textColor == UIColor.lightGray{ textView.text = "" textView.textColor = UIColor.darkGray } else { textView.text = "content".localized() textView.textColor = UIColor.lightGray } } func textView.. 2022. 3. 3. action when clicked button in cell of collectionView collcetionview의 cell 내부에 있는 UIButton을 눌렀을때 불러온 이미지를 삭제하기 위한 동작에 대한 처리 방법에 대한 글이다. This is about action for delete image when clicked UIButton in cell of UICollectionView. collectionview 용도 : 갤러리에서 불러온 이미지 미리보기 collectionsview's purpose : previvew image selected from gallery Collectionview의 cell cell 내부에는 미리보기용 UIImageview와 이미지 삭제를 위한 UIButton이 존재한다. There is a UIImageView for preview and a UIBut.. 2022. 3. 2. 이전 1 다음 728x90 반응형