我有一个通过Json获取数据的自定义TableView,我在该tableView中有一个名为" FullName" 。 FullName显然有用户名,但OnClick我希望获得" Profile_ID"对应于特定的TableViewCell,以便我可以保存它。我的代码将有助于清理
class HomePageViewController: UIViewController,UITableViewDataSource,UITableViewDelegate{
@IBOutlet var StreamsTableView: UITableView!
var names = [String]()
var profile_ids = [String]()
override func viewDidLoad() {
super.viewDidLoad()
StreamsTableView.dataSource = self
let urlString = "http://"+Connection_String+":8000/streams"
let url = URL(string: urlString)
URLSession.shared.dataTask(with:url!, completionHandler: {(data, response, error) in
if error != nil {
/// print(error)
} else {
do {
let parsedData = try JSONSerialization.jsonObject(with: data!, options: .allowFragments) as! [String:Any]
if let Streams = parsedData["Streams"] as! [AnyObject]? {
// Getting Json Values
for Stream in Streams {
if let fullname = Stream["fullname"] as? String {
self.names.append(fullname)
}
if let profile_id = Stream["profile_id"] as? String {
self.profile_ids.append(profile_id)
}
DispatchQueue.main.async {
self.StreamsTableView.reloadData()
}
}
}
} catch let error as NSError {
print(error)
}
print(self.names)
}
}).resume()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func Fullname_Click(){
// Where the # 32 is I would like to replace that with Profile_ID
UserDefaults.standard.set("32", forKey: "HomePage_Fullname_ID")
let navigate = self.storyboard?.instantiateViewController(withIdentifier: "Profiles") as? MyProfileViewController
self.navigationController?.pushViewController(navigate!, animated: true)
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
tableView.backgroundColor = UIColor.clear
return names.count
}
private func tableView(tableView: UITableView,height section: Int)->CGFloat {
return cellspacing
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let mycell = self.StreamsTableView.dequeueReusableCell(withIdentifier: "prototype1", for: indexPath) as! HomePage_TableViewCell
mycell.Fullname.setTitle(names[indexPath.row], for: UIControlState.normal)
// Click Event below
mycell.Fullname.addTarget(self, action: "Fullname_Click", for: UIControlEvents.touchUpInside)
mycell.Fullname.tag = indexPath.row
tableView.separatorColor = UIColor.clear
return mycell
}
}
主要问题在于这段代码
func Fullname_Click(){
// Where the # 32 is I would like to replace that with Profile_ID
UserDefaults.standard.set("32", forKey: "HomePage_Fullname_ID")
let navigate = self.storyboard?.instantiateViewController(withIdentifier: "Profiles") as? MyProfileViewController
self.navigationController?.pushViewController(navigate!, animated: true)
}
注意我硬编码了数字 32 我希望将数字32替换为属于该特定TableView单元格的 profile_id 的值。可以在此代码中访问profile_id
if let profile_id = Stream["profile_id"] as? String {
self.profile_ids.append(profile_id)
}
我可以找到一种方法将其传递到 FullName_Click 函数...
答案 0 :(得分:1)
解决方案1: 假设,每个名称都存在一个profile_id,
您可以使用索引路径进行访问。
@IBAction func resetClicked(sender: AnyObject) {
let row = sender.tag
let pid = self.profile_ids[row]
UserDefaults.standard.set(pid, forKey:"HomePage_Fullname_ID")
// rest of the code
}
解决方案2: 假设您有一个单独的自定义单元格,HomePage_TableViewCell, 在自定义单元格中创建另一个属性“profile_id” HomePage_TableViewCell
在cellforRowAtIndexPath中,设置相应的配置文件ID。
mycell.profile_id = self.profile_ids [indexpath.row]
并在自定义单元格中移动按钮操作,以便您可以以self.profile_id
的形式访问profile_id属性@IBAction func resetClicked(sender: AnyObject) {
UserDefaults.standard.set(self.profile_id, forKey:"HomePage_Fullname_ID")
// rest of the code
}
答案 1 :(得分:1)
你快到了。您只需进行一些小的更改,您就可以访问该单元格中用户的profile_id
。
将选择器Fullname_Click
的签名更改为此
func Fullname_Click(sender: UIButton)
在cellForRowAtIndexPath:
方法中添加选择器
button.addTarget(self, action: #selector(HomePageViewController.Fullname_Click(sender:)), for: .touchUpInside)
在Fullname_Click:
的实施中,现在您的按钮为sender
。使用其标记从profile_id
数组中获取用户的profile_ids
let profile_id = profile_ids[sender.tag]