Re: Using Properties at Outlets

2008-04-17 Thread Adam P Jenkins
The only potential problem I can see with this is whether IB will use the generated accessor methods to set the outlets, or if it will just access the ivars directly. If it does the latter, then no property change notifications will be sent to observers when IB sets the outlet. If that's

Re: Using Properties at Outlets

2008-04-14 Thread Randall Meadows
On Apr 13, 2008, at 10:46 PM, Steve Sheets wrote: Has anyone had any problems with creating Properties with Objective- C 2.0 that are also Outlets? I been using this inside my code, and I want to be sure there is no problems with this. I create fairly standard (readonly) and (readwrite, cop

Re: Using Properties at Outlets

2008-04-13 Thread Seth Willits
On Apr 13, 2008, at 9:46 PM, Steve Sheets wrote: The documentation does not explicitly say you can do this. I just want to know if anyone has seen an issue? I would fully expect it work just fine. Not an authoritative answer, but it must be reassuring to know I don't think you're crazy. :)

Using Properties at Outlets

2008-04-13 Thread Steve Sheets
Has anyone had any problems with creating Properties with Objective-C 2.0 that are also Outlets? I been using this inside my code, and I want to be sure there is no problems with this. I create fairly standard (readonly) and (readwrite, copy) properties using ivars, @property and @synthesiz