我試圖將導航欄添加到Main.storyboard中的表格視圖。 在Main.storyboard中,沒有任何問題導航欄在以上的表格視圖中出現。表視圖導航欄正在關閉
此外,數據加載之前沒有問題。導航欄可見以上表格視圖的一部分。
但是,當所有的數據被加載時,導航欄將會下來。
我想保持導航欄的tableview的上面部分。 我錯在哪裏?如何解決這個問題呢?
我認爲,FirstViewController.swift並不重要,但我共享所有代碼。
FirstViewController.swift
import UIKit
class FirstViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
var tbCount = 0
var myMp3s = [Mp3]()
override func viewDidLoad() {
super.viewDidLoad()
tableView.dataSource = self
tableView.delegate = self
let url = URL(string: "http://example.php")
URLSession.shared.dataTask(with:url!, completionHandler: {(data, response, error) in
guard let data = data, error == nil else { return }
do {
let json = try JSONSerialization.jsonObject(with: data, options: .allowFragments) as! [String:Any]
let posts = json["server_response"] as? [[String: Any]] ?? []
for i in posts {
print(i["id"]!)
let mp3 = Mp3(id: i["id"] as! String, category: i["kategori"] as! String)
self.myMp3s.append(mp3)
}
self.tableView.reloadData()
print("counte", self.myMp3s.count)
} catch let error as NSError {
print(error)
}
}).resume()
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return myMp3s.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell()
cell.textLabel?.textAlignment = .center
cell.textLabel?.text = self.myMp3s[indexPath.row].category
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print(myMp3s[indexPath.row].category)
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
嘗試禁用NavigationController的navigationBar的**半透明**屬性。 – KKRocks