У меня есть список названий компаний с идентификаторами.Я использовал раскрывающийся список и отображал название компании, анализируя данные JSON.Я не могу получить идентификатор выбранного элемента в раскрывающемся меню.
Мои данные json:
{
"success": true,
"message": [
{
"company_name": "ABC",
"id": 1
},
{
"company_name": "JHG",
"id": 10
}
]}
Мой быстрый код:
let url = NSURL(string: COMPANY_URL)
URLSession.shared.dataTask(with: (url as?URL)!, completionHandler: {(data,response,error) ->
Void in
if let jsonObj = try? JSONSerialization.jsonObject(with: data!, options: .allowFragments) as? NSDictionary
{
// print(jsonObj.value(forKey: "message")!)
if let messageArray = jsonObj.value(forKey: "message") as? NSArray
{
for message in messageArray
{
if let messageDict = message as? NSDictionary
{
if let data = data {
let successmessage = jsonObj.value(forKey: "success") as? Int
if(successmessage == 1)
{
if let company_name = messageDict.value(forKey: "company_name")
{
self.companiesArray.append(company_name as! String)
}
if let company_id = messageDict.value(forKey: "id")
{
self.companyidstr.append(company_id as! Int)
print(self.companyidstr)
}
for messageArray in self.companyidstr
{
print(messageArray)
let btnlabel = Int(self.companyBtn.titleLabel!.text!)
if(btnlabel == Int(messageArray))
{
self.companyidstring = messageArray
print(self.companyidstring)
// THIS IS WHERE IT NEED TO SHOW ID BUT NOT }
}
OperationQueue.main.addOperation({
self.tableView.reloadData()
})
} else
{
}
}
}
}
}
}
}).resume()
Мое требование состоит в том, чтобы показывать список названий компаний пользователям, но когда они выбирают любое название компании, следует сохранить в виде соответствующего идентификатора выбранного элемента.
мой ВЕСЬ КОД:
class RegistrationViewController: UIViewController, UITableViewDataSource, UITableViewDelegate {
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var companyBtn: UIButton!
final let COMPANY_URL = COMPANY_URL
var companiesArray = [String]()
var companyidstr = [Int]()
var companyidstring: Int = 0
override func viewDidLoad() {
super.viewDidLoad()
downloadCompanyNamesFromDB()
// insertUserDetailsintoDB()
tableView.isHidden = true
self.downloadCompanyNamesFromDB()
//tableView.tableFooterView = UIView()
tableView.dataSource = self
tableView.delegate = self
}
@IBAction func companyBtnClick(_ sender: Any) {
// tableView.isHidden = false
if(tableView.isHidden)
{
animate(toogle: true)
} else
{
animate(toogle: false)
}
}
func animate(toogle: Bool)
{
if(toogle)
{
UIView.animate(withDuration: 0.3)
{
self.tableView.isHidden = false
}
} else{
UIView.animate(withDuration: 0.3)
{
self.tableView.isHidden = true
}
}
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return companiesArray.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = companiesArray[indexPath.row]
print(companiesArray)
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let companytitle = companiesArray[indexPath.row]
companyBtn.setTitle(companytitle, for: .normal)
print(companytitle)
// print(companiesArray[indexPath.row].id as! String)
// companiesArray = message --> HERE IS THE CODE
animate(toogle: false)
}
func downloadCompanyNamesFromDB()
{
let url = NSURL(string: COMPANY_URL)
URLSession.shared.dataTask(with: (url as?URL)!, completionHandler: {(data,response,error) ->
Void in
if let jsonObj = try? JSONSerialization.jsonObject(with: data!, options: .allowFragments) as? NSDictionary
{
// print(jsonObj.value(forKey: "message")!)
if let messageArray = jsonObj.value(forKey: "message") as? NSArray
{
for message in messageArray
{
if let messageDict = message as? NSDictionary
{
if let data = data {
let successmessage = jsonObj.value(forKey: "success") as? Int
if(successmessage == 1)
{
} else
{
}
}
}
}
}
}
}).resume()
}
}
}