• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: changing the name of my webview
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: changing the name of my webview


  • Subject: Re: changing the name of my webview
  • From: Quincey Morris <email@hidden>
  • Date: Mon, 16 Nov 2015 16:07:25 -0800
  • Feedback-id: 167118m:167118agrif8a:167118sXdFxal6b1:SMTPCORP

On Nov 16, 2015, at 15:30 , Scott Berry <email@hidden> wrote:
>
> In my main storyboard I’d like to call my web view “BrowseAirports.”  How do I tell Xcode to do this so that when I call the code to open the web view it knows that my web view in storyboard is “BrowseAirports”?

OS X or iOS? What do you mean by “open the web view”? On a Mac, you generally open windows which contain a given view. On iOS, you segue to a view controller that contains the view.

Probably the correct approach involves setting an outlet to the view from the view controller:

1. Subclass the view controller that contains the view (if you aren’t already using a custom subclass).

2. Add an outlet to the view controller called (say) ‘browseAirports’. Since an an outlet is a kind of instance variable, it’s recommended to lowercase the first letter.

3. In the storyboard, drag a connection from the view controller’s outlet to the view itself.

4. Refer to the view in code as ‘myViewController.browseAirports’.

Of course, this means you need a reference to the view controller, if you don’t already have one. How you do that will depend on which platform you’re using.

I don’t think there’s any reasonable way to refer to a view *by name*, since views don’t really have names. You can refer to views by *tag* (a numeric identifier), or there are other ad-hoc things you could do, such as locate the view at a known place in your view hierarchy (and checking it’s of the correct view class), but an outlet is the normal way to do something like this.

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


References: 
 >changing the name of my webview (From: Scott Berry <email@hidden>)

  • Prev by Date: changing the name of my webview
  • Next by Date: Re: Images in NSOutlineView disappear on dataReload
  • Previous by thread: changing the name of my webview
  • Next by thread: Re: changing the name of my webview
  • Index(es):
    • Date
    • Thread