as I'm new to swift I have a question about my code what exactly is its problem! I have table view which I'm supposed to put some data that I get it from API. I'm using alamofire and moya.
I call this func in my vc to request to the web:
class SmsPresenter
{
var view:SmsView?
func attachView(view: SmsView){
self.view = view
}
func gettingEveyThing( aptId : String){
ApiGenerator.request(targetApi: ApartemanService.getSmsInfo(aptId: aptId), responseModel: smsModelList.self, success: { (response) in
self.view?.GettingEverthingSuccess(response: response.body)
}) { (error) in
print(error)
self.view?.GettingEvethingFailed(errorMessage: "error")
}
}
This is my data model that I store them here:
typealias smsModelList = [SmsModel]
struct SmsModel:Codable {
var unitNo:Int?
var unitPlaque:String?
var billText:String?
var contacts:[ContactsModel?]
}
struct ContactsModel:Codable
{
var id :Int?
var selected :Bool?
var phoneNumber : String?
var name : String?
}
And this the func when I get 200 status code:
func GettingEverthingSuccess(response: smsModelList?) {
print("getting evething success")
guard let response = response else {
return
}
self.data = response
self.tableview.reloadData()}
My declartions:
var Presenter = SmsPresenter()
var data : smsModelList?
var Pphone : [String] = []
var Nname : [String] = []
var Iid : [Int] = []
populating table:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "SmsCell") as? SmsTableViewCell
if let contacts = data?[indexPath.row].contacts
{
for eachmain in contacts
{
Pphone.append((eachmain?.phoneNumber)!)
Nname.append((eachmain?.name)!)
Iid.append((eachmain?.id)!)
}
}
}
what exactly is wrong with my code :| ! when I run the code it puts the first number for first row then it put the second number for first ro again, though it should put the second number and other numbers for theire cell row.
Api Response:
[
{
"contacts": [
{
"id": 9827,
"selected": true,
"phoneNumber": "00987684044",
"name": "OWNER"
}
],
"unitNo": 1,
"unitPlaque": "Jack",
"billText": "TEXTTEXT"
},
{
"contacts": [
{
"id": 10145,
"selected": true,
"phoneNumber": "098887776655",
"name": "mmm"
}
],
"unitNo": 2,
"unitPlaque": "mm",
"billText": "TEXTTEXT"
}
]
photo: Photo
the final answer for my was a combiniation of all the answers
The first crash you got because of force unwrapping
data
value.you could return data count by using nil
In this example, it seems you are iterating values inside the
tableView(_:cellForRowAt:)
. This isn't great idea because this method will be called a lot of times to display table. Dequeue & configure cell inside the cellForRow block and immediately return cell.First populate data in format that you need.