Итак, я пытаюсь получить данные из sqlserver в свой tableview, но, похоже, не понимаю, я следил за учебником и почти уверен, что не сделал ничего плохого, я тоже использую настраиваемую ячейку, единственное, что работает, - это соединение на sql, потому что он печатает данные в журнале вывода. Я действительно новичок в swift и xcode, и я понятия не имею, что делаю. В любом случае вот мой код:
TableCell.swift
import UIKit
class TableCell: UITableViewCell {
@IBOutlet weak var idtext: UILabel!
@IBOutlet weak var usernametxt: UILabel!
func setText(text: textstuff) {
idtext.text = text.id
usernametxt.text = text.username
}
}
ViewController
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var tableview: UITableView!
var taable: [textstuff] = []
override func viewDidLoad() {
super.viewDidLoad()
taable = createArray()
//Adding the observer for error and to receive the message
}
func createArray() -> [textstuff]{
var temptext: [textstuff] = []
NotificationCenter.default.addObserver(self, selector: #selector(error(_:)), name: NSNotification.Name.SQLClientError, object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(message(_:)), name: NSNotification.Name.SQLClientMessage, object: nil)
let client = SQLClient.sharedInstance()!
client.connect("x.x.x.x", username: "xxxxxx", password: "xxxxxx", database: "xxxxxx") { success in
client.execute("SELECT username FROM Supervisors", completion: { (_ results: ([Any]?)) in
for table in results as! [[[String:AnyObject]]] {
for row in table {
for (columnName, value) in row {
print("\(columnName) = \(value)")
let newVal = value as? String ?? ""
let userandid = textstuff(id: columnName, username: newVal)
temptext.append(userandid)
}
}
}
client.disconnect()
})
}
return temptext
}
@objc func error(_ notification: Notification?) {
let code = notification?.userInfo?[SQLClientCodeKey] as? NSNumber
let message = notification?.userInfo?[SQLClientMessageKey] as? String
let severity = notification?.userInfo?[SQLClientSeverityKey] as? NSNumber
if let code = code, let severity = severity {
print("Error #\(code): \(message ?? "") (Severity \(severity))")
}
}
@objc func message(_ notification: Notification?) {
let message = notification?.userInfo?[SQLClientMessageKey] as? String
print("Message: \(message ?? "")")
}
}
extension ViewController:UITableViewDataSource, UITableViewDelegate{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return taable.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let text = taable[indexPath.row]
let cell = tableView.dequeueReusableCell(withIdentifier: "TextCell") as! TableCell
cell.setText(text: text)
return cell
}
}
textstuff .swift
import Foundation
class textstuff{
var id: String
var username: String
init(id: String, username: String) {
self.id = id
self.username = username
}
}
Я был бы очень признателен за любую помощь, ребята !!
РЕДАКТИРОВАТЬ Я попытался напечатать taable.count
и, как и ожидалось, напечатал 0