Swift - IBOutletCollection equivalent

╄→гoц情女王★ 提交于 2019-11-26 22:37:15

EDIT

This was fixed in a later Beta release of Swift - there's now in IBCollection option in the interface builder.


For early Beta releases of Swift:

I came across the same problem: in the release notes of Beta 2 you find the following statement:

Interface Builder does not support declaring outlet collections in Swift classes

I solved this the following way (easy to customize):

class CardGameViewController: UIViewController {
  @lazy var cardButtons : UIButton[] = {
    var tempBtn: UIButton[] = []
    for v:AnyObject in self.view.subviews {
      if v is UIButton {
        tempBtn.append(v as UIButton)
      }
    }
    return tempBtn
  }()
...

Basically, it loops through all the subviews and checks if one is a UIButton. In that case it gets added to a temporary array. This temporary array is then used to lazy instantiate the cardButtons array. For all details, check: Matchismo: Objective-C to Swift

Update: This works properly in Xcode now - "Outlet Collection" is one of the connection options in Interface Builder, which creates something that looks like:

@IBOutlet var labelCollection: [UILabel]!

While we're waiting for a fix, you can approximate this using a computed property. Let's say my view has five UILabels that I want in a collection. I still have to declare each one, but then I also declare a computed property that collects them:

class MyViewController {
    @IBOutlet var label1 : UILabel
    @IBOutlet var label2 : UILabel
    @IBOutlet var label3 : UILabel
    @IBOutlet var label4 : UILabel
    @IBOutlet var label5 : UILabel
    var labels: UILabel![] { return [label1, label2, label3, label4, label5] }

Kind of annoying, but from then on we can treat the labels property as if it were an IBOutletCollection, and won't have to change the rest of our code once the bug is fixed:

override func viewDidLoad() {
    super.viewDidLoad()

    for (index, item) in enumerate(self.labels) {
        item.text = "Label #\(index)"
    }
}
machine

Use:

@IBOutlet var lineFields: [UITextField]!

Then control-drag from UITextField elements to lineFields in order.

ZiggyST
@IBOutlet var buttons : [UIView]!

then drag it from the connections inspector in the interface builder or whatever metod you usually use for that

Follow steps to create an array of outlets and connect it with IB Elements:

  • Create an array of IBOutlets
  • Add multiple UIElements (Views) in your Storyboard ViewController interface (As shown in below snapshot)
  • Select ViewController (In storyboard) and open connection inspector
  • There is option 'Outlet Collections' in connection inspector (You will see an array of outlets there)
  • Connect if with your interface elements

-

class ViewController2: UIViewController {


    @IBOutlet var collection:[UIView]!


    override func viewDidLoad() {
        super.viewDidLoad()
    }
}

matt

I got this working in Xcode seed 3 using this syntax

@IBOutlet strong var views: NSArray?

See my discussion here: https://stackoverflow.com/a/24686602/341994

What @machine said seems to be the current state (XCode 7.1) with iOS 9 bindings. The key is to drag them all in order. Use the first item to control+drag into the controller code and then change the Outlet type to collection. After the from the controller code file drag the outlet point onto each of the screen controls one by one in order (as @machine says)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!