我试图获取一个表视图来加载我从imgur获得的一些JSON数据。我可以向我的后端发出请求,获取imgur数据,然后将其反馈给我,然后我可以填充表格。但是,我得到了这个非常奇怪的问题,其中数据在最后被截止。 Here是一张照片。如果我尝试进行另一次搜索,它不会将更多数据加载到表格中,所以当我这样做时,我会打破它。我不知道自己做错了什么。我也试图在某些时候用模态点击它,并且可重复使用的单元格也可能不正确,但我想我会在这个问题之后到达那里。
无论如何,任何帮助都将不胜感激。
class ViewController3: UIViewController, UITextFieldDelegate,UITableViewDataSource {
var dataState: Data?
var linkArray = [String]()
var titleArray = [String]()
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var SearchTextField: UITextField!
@IBAction func SearchButton(_ sender: Any) {
let urlString = "http://localhost:3000/getimages"
Alamofire.request(urlString, method: .post, parameters: ["search": SearchTextField.text!],encoding: JSONEncoding.default, headers: nil).responseJSON {
response in
switch response.result {
case .success:
let json = JSON(response.data!)
for (_, subJson) in json["data"] {
if let link = subJson["link"].string {
self.linkArray.append(link)
}
if let title = subJson["title"].string{
self.titleArray.append(title)
}
}
print("this is linkArray ", self.linkArray)
print("this is titleArray ", self.titleArray)
self.dataUpdated()
break
case .failure(let error):
print(error)
}
}
}
@IBAction func BackToTabControl(_ sender: Any) {
let storyBoard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let tabBarVC = storyBoard.instantiateViewController(withIdentifier: "tabBarController") as! UITabBarController
if let vc1 = tabBarVC.viewControllers?.first as? ViewController1 {
vc1.dataState = dataState
}
let appDelegate = UIApplication.shared.delegate as! AppDelegate
appDelegate.window?.rootViewController = tabBarVC
}
func textFieldShouldReturn(_ textField: UITextField) -> Bool {
textField.resignFirstResponder()
return true
}
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.bounces = true
SearchTextField.returnKeyType = UIReturnKeyType.done
SearchTextField.delegate = self
tableView.dataSource = self
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return titleArray.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cellReuseIdentifier")! //1.
let text = titleArray[indexPath.row] //2.
cell.textLabel?.text = text //3.
return cell //4.
}
func dataUpdated() {
DispatchQueue.main.async {
self.tableView.reloadData()
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
}
答案 0 :(得分:0)
尝试下一步:
if let label = cell.textLabel {
label.text = text
label.sizeToFit()
}
答案 1 :(得分:0)
你必须在tableview中点击并按住才能让它在模拟器中滚动.....显然我不知道这一点。谢谢你的帮助。