Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Xcode array Help

  • 09-07-2014 09:51PM
    #1
    Registered Users, Registered Users 2 Posts: 263 ✭✭


    Hi People, New To IOS Development, Just wondering if you can make an array In the IBOutlet inside the interface of the header file

    For example instead of

    IBOutlet UIButton *Letter1;
    IBOutlet UIButton *Letter2;
    IBOutlet UIButton *Letter3;
    IBOutlet UIButton *Letter4;
    IBOutlet UIButton *Letter5;
    IBOutlet UIButton *Letter6;
    IBOutlet UIButton *Letter7;

    Have something like IBOutlet UIButton *Letter[7];

    Been trying a few different ways and can't seem to find a simple answer?

    Any help is much appreciated

    Dpjmie


Comments

  • Closed Accounts Posts: 3,780 ✭✭✭Frank Lee Midere


    dpjmie wrote: »
    Hi People, New To IOS Development, Just wondering if you can make an array In the IBOutlet inside the interface of the header file

    For example instead of

    IBOutlet UIButton *Letter1;
    IBOutlet UIButton *Letter2;
    IBOutlet UIButton *Letter3;
    IBOutlet UIButton *Letter4;
    IBOutlet UIButton *Letter5;
    IBOutlet UIButton *Letter6;
    IBOutlet UIButton *Letter7;

    Have something like IBOutlet UIButton *Letter[7];

    Been trying a few different ways and can't seem to find a simple answer?

    Any help is much appreciated

    Dpjmie

    No. Those outlets are designed to allow you to connect in the xib or storyboard. So they have to be seperate at nib instantiation.


  • Registered Users, Registered Users 2 Posts: 263 ✭✭dpjmie


    Cheers Frank, Much Appreciated


  • Registered Users, Registered Users 2 Posts: 1,176 ✭✭✭vinnycoyne


    Take a look at the IBOutletCollection section over at http://nshipster.com/ibaction-iboutlet-iboutletcollection/


Advertisement