No meu TextViewTableViewCell
, eu tenho uma variável para acompanhar um bloco e um método de configuração onde o bloco é passado e atribuído.
Aqui está a minha TextViewTableViewCell
turma:
//
// 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 = onTextEdit
textView.delegate = self
textView.text = text
}
// #pragma mark - Text View Delegate
func textViewDidEndEditing(textView: UITextView!) {
if onTextViewEditClosure {
onTextViewEditClosure!(text: textView.text)
}
}
}
Quando eu uso o método configure no meu cellForRowAtIndexPath
método, como uso adequadamente o self fraco no bloco em que passo.
Aqui está o que eu tenho sem o self fraco:
let myCell = tableView.dequeueReusableCellWithIdentifier(textViewCellIdenfitier) as TextViewTableViewCell
myCell.configure(text: body, onTextEdit: {(text: String) in
// THIS SELF NEEDS TO BE WEAK
self.body = text
})
cell = bodyCell
UPDATE : trabalhei usando o seguinte [weak self]
:
let myCell = tableView.dequeueReusableCellWithIdentifier(textViewCellIdenfitier) as TextViewTableViewCell
myCell.configure(text: body, onTextEdit: {[weak self] (text: String) in
if let strongSelf = self {
strongSelf.body = text
}
})
cell = myCell
Quando eu faço [unowned self]
, em vez de [weak self]
e tirar o if
comunicado, o aplicativo falha. Alguma idéia de como isso deve funcionar [unowned self]
?