选择标签栏时出现黑屏

时间:2017-04-06 15:15:23

标签: ios swift viewcontroller

当我切换到"朋友"我遇到黑屏问题我的申请表上的标签。这确实是因为我的friendsviewcontroller。我知道这是因为我删除了viewcontroller的链接,它向我显示了正常的屏幕。希望有人能看出我做错了什么

FriendsViewController:

import UIKit
import FBSDKLoginKit


class FriendsViewController: UITabBarController, UITableViewDelegate,UITableViewDataSource{



@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var friendTypeSwitch: UISegmentedControl!

@IBOutlet weak var friendSearchBar: UITextField!
var user:User = User()

override func viewDidLoad() {
    super.viewDidLoad()

    print("Friends tab")
    // Do any additional setup after loading the view.
}
override func viewDidAppear(_ animated: Bool) {
    print("view did appear")
}






func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 30
}
//What to do with tableview
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = self.tableView.dequeueReusableCell(withIdentifier: "friendCell", for: indexPath) as! friendsCustomCell
    user.username = "kulgut123"

    cell.friendName.text = user.username



            return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    return UITableViewAutomaticDimension
}

func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
    return UITableViewAutomaticDimension
}



}

class friendsCustomCell: UITableViewCell{

@IBOutlet weak var friendImg: UIImageView!

@IBOutlet weak var friendName: UILabel!

}

1 个答案:

答案 0 :(得分:1)

正如ronatory所说,你应该从UIViewController继承FriendsViewController而不是UITabBarController。

class FriendsViewController: UIViewController, UITableViewDelegate,UITableViewDataSource {
      //type your code here
}