10
인수를 사용하여 스위프트 블록에서 약한 자체를 올바르게 처리하는 방법
내에서는 TextViewTableViewCell블록을 추적하는 변수와 블록이 전달되고 할당되는 구성 방법이 있습니다. 여기 내 TextViewTableViewCell수업이 있습니다. // // TextViewTableViewCell.swift // import UIKit class TextViewTableViewCell: UITableViewCell, UITextViewDelegate { @IBOutlet var textView : UITextView var onTextViewEditClosure : ((text : String) -> Void)? func configure(#text: String?, onTextEdit : ((text : String) -> Void)) { onTextViewEditClosure …
151
ios
swift
retain-cycle