• 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: Working with NSTextFields
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Working with NSTextFields


  • Subject: Re: Working with NSTextFields
  • From: Alex Hall <email@hidden>
  • Date: Fri, 18 Sep 2015 19:46:47 -0400

> On Sep 15, 2015, at 21:04, Quincey Morris <email@hidden> wrote:
>
>> My only remaining wonder is about setting the accessibilityHelp property, which is giving me the same error it always has: self is immutable.
>
> You’re going to have to post a few text fragments to show what’s going on, that show how the variables are declared. Context is important here.

Here you go. I have a basic Mac app in Swift. My view controller is a subclass of NSTextFieldDelegate, and the outlet to a text field in the storyboard is named myField. Here's the only stuff in my view controller beyond the boilerplate code:

@IBOutlet weak var myField:NSTextField! //connected to the text field in the storyboard

	func  textDidChange(notification:NSNotification) {
		print("text changed.")
		myField.accessibilityHelp="new help message"
	}

The line setting the value of myField.accessibilityHelp has the error "cannot assign to property: 'self' is immutable". Comment out that line and the app runs normally. The function doesn't get triggered, because I think I need controlTextDidChange instead, but the point is that I see that error as soon as I try to modify the accessibility details of the text field, and the app won't even build.
>
> Keep in mind that with Swift, the error that’s reported is still sometimes a secondary error. What it says may not be a good clue to what’s wrong.


--
Have a great day,
Alex Hall
email@hidden

_______________________________________________

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


  • Follow-Ups:
    • Re: Working with NSTextFields
      • From: Quincey Morris <email@hidden>
References: 
 >Working with NSTextFields (From: Alex Hall <email@hidden>)
 >Re: Working with NSTextFields (From: Jens Alfke <email@hidden>)
 >Re: Working with NSTextFields (From: Alex Hall <email@hidden>)
 >Re: Working with NSTextFields (From: Quincey Morris <email@hidden>)

  • Prev by Date: swift: windowControllerDidLoadNib called twice
  • Next by Date: Re: swift: windowControllerDidLoadNib called twice
  • Previous by thread: Re: Working with NSTextFields
  • Next by thread: Re: Working with NSTextFields
  • Index(es):
    • Date
    • Thread