The error said that "Use of self in delegating initializer before self.init is called". Does anyone know how to fix this issue????
convenience init(tweet: Dictionary<String, String>) {
let _contents: String = ""
//var _date: String = ""
//var _reply_cnt: String = "0"
let _like_cnt: String = "0"
//var _bad_cnt: String = "0"
let _imageUrl: String?
//code below is the reason why got error
self.init(contents:_contents, /*date:_date, reply_cnt:_reply_cnt, */like_cnt:_like_cnt,/* bad_cnt:_bad_cnt, */imageUrl:imageUrl)