• 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: Mysterious crash with NSTableView
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Mysterious crash with NSTableView


  • Subject: Re: Mysterious crash with NSTableView
  • From: Kyle Sluder <email@hidden>
  • Date: Mon, 29 Aug 2016 11:07:19 -0700

> On Aug 29, 2016, at 6:39 AM, Andreas Falkenhahn <email@hidden> wrote:

>
>> On 29.08.2016 at 02:10 Kyle Sluder wrote:
>>
>> Delegates are different because they are often messaged in response to
>> various exogenous events. Some of these events might happen transiently
>> during window teardown, which is usually a time of massive fluctuation
>> in an app’s object graph. This is why -windowDidClose: is a good time to
>> nil out delegate properties that point back and the window controller
>> which ultimately owns the control.
>
> So does this mean that this is potentially dangerous?
>
>    [NSApp runModalForWindow:win];
>    [tableView setDelegate:nil];
>    [tableView setDataSource:nil];
>    [win release];
>
> Should I move the "set to nil" calls to -windowDidClose instead?

Since you hold a strong reference to the window until after you clear out the delegate/dataSource backpointers, you know that the window cannot be reallocated until at least that point (but could be delayed to any arbitrary point in the future). So this approach is safe from window teardown causing the table view to message a zombie delegate.

--Kyle Sluder

>
> --
> Best regards,
> Andreas Falkenhahn                            mailto: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


References: 
 >Re: Mysterious crash with NSTableView (From: "Gary L. Wade" <email@hidden>)
 >Re: Mysterious crash with NSTableView (From: Andreas Falkenhahn <email@hidden>)
 >Re: Mysterious crash with NSTableView (From: Alex Zavatone <email@hidden>)
 >Re: Mysterious crash with NSTableView (From: Andreas Falkenhahn <email@hidden>)
 >Re: Mysterious crash with NSTableView (From: Kyle Sluder <email@hidden>)
 >Re: Mysterious crash with NSTableView (From: Andreas Falkenhahn <email@hidden>)

  • Prev by Date: Re: Toolbar hiding on rotation?
  • Next by Date: Re: Pixel-perfect migration from ATSUI to Core Text
  • Previous by thread: Re: Mysterious crash with NSTableView
  • Next by thread: length of file from NSFileHandle?
  • Index(es):
    • Date
    • Thread