使用swift单击按钮时,在新视图中加载数据

时间:2016-01-11 11:14:00

标签: swift button ios9.2

我正在开发一个应用程序,我以编程方式创建按钮。当我单击一个按钮时,它将从数据库中请求数据并在另一个视图中显示它。

我使用button.tag来确定要请求的数据,我只能在点击按钮后获取标记。

然而,当我点击按钮时,它第一次没有显示任何内容。我必须再次点击它以查看我想要的数据。

override func viewDidLoad() {
    super.viewDidLoad()

    //parseJSON(tagId)
    createButton()

    // Do any additional setup after loading the view, typically from a nib.
}
func createButton(){

   var j:CGFloat=60
    for var i:Int = 0 ; i < myImages.count;i = i+1 {
        let myButton = UIButton()
        myButton.setImage(UIImage(named: "carasusto.jpg"), forState: UIControlState.Normal)
        myButton.setTitleColor(UIColor.blueColor(), forState: .Normal)
        myButton.frame = CGRectMake(j, j+60, 50, 50)

        myButton.tag = i //assign a tag to every button
        myButton.addTarget(self, action: "segueToCreate:", forControlEvents: UIControlEvents.TouchUpInside)
        self.view.addSubview(myButton)

        j=j+60
        print(myImages[i])

    }
}

@IBAction func segueToCreate(sender: UIButton){
    tagId = String(sender.tag)//tagId needs to fetch the information
    parseJSON(tagId)
    performSegueWithIdentifier("segueToView", sender:self)
}
func parseJSON(tagID:String){

    Alamofire.request(.GET, "http://smarttags-001-site1.btempurl.com/SmartTagsRequests.aspx", parameters: ["AjaxFunc":"GetTagAttr","TagID":"\(tagID)"]).validate().responseJSON{ response in
        switch response.result{
        case .Success:
            if let value = response.result.value {

                let json = JSON(value)

                print("JSON: \(json)")
                self.TagName = json[0]["TagName"].stringValue
                NSLog("\(self.TagName)")
                self.ContentTitle = json[0]["ContentTitle"].stringValue
                NSLog("\(self.ContentTitle)")
            }
        case .Failure(let error):
            print(error)
        }enter code here 
    }
}
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {

    var ViewTest : ViewTwo = segue.destinationViewController as! ViewTwo
    var TagNameLabel = UILabel()
    TagNameLabel.frame = CGRectMake(74, 112, 182, 64)
    ViewTest.view.addSubview(TagNameLabel)
    TagNameLabel.text = TagName
    var ContentTitleLabel = UILabel()
    ContentTitleLabel.frame = CGRectMake(74, 180, 182, 64)
    ViewTest.view.addSubview(ContentTitleLabel)
    ContentTitleLabel.text = ContentTitle
}

}

2 个答案:

答案 0 :(得分:1)

问题的最可能原因是您拨打parseJson,然后拨打prepareForSegueparseJson是异步的,在调用prepareForSegue之前,您无法从服务中获取数据。首先,将prepareForSegue移至parseJson的完成块。

答案 1 :(得分:1)

要跟进MirekE's answer,您可以考虑以下其他一些步骤:

  • 考虑使用自动布局代替硬编码框架,因此您的UI将适应不同的尺寸类别。

  • 考虑显示交互式列表(图像)的替代方法,而不是以编程方式添加按钮。例如,您可以使用原型(表视图或集合视图)单元格。单元格是可选择的,可以取代按钮。其他好处包括:

    • 一个可滚动的容器,如果你有比屏幕上更多的按钮。
    • 单个segue(或选择)由故事板原型单元处理,而不是需要制作每个程序化的按钮&#34;执行segue(或动作)。由于您已经知道选择了哪个单元格,因此您不再需要标记来解决这个问题。
  • 考虑将参数传递到目标视图控制器,而不是尝试在prepareForSegue中实例化和创建控件。此时未加载目的地视图。

  • 考虑允许用户界面感觉更具响应性,例如执行segue并显示占位符详细信息,然后您可以在网络请求完成后更新。否则,用户可能必须在segue发生之前等待网络响应(这可能使他们认为没有发生任何事情并且不必要地再次点击,导致额外的网络请求)。

一般来说,Apple(或其他人)已经提供了一些方法来完成您想要的操作,理想情况下,您需要编写,调试,测试和维护的代码更少,以完成您希望应用程序执行的操作。