memory-analyzers icon indicating copy to clipboard operation
memory-analyzers copied to clipboard

Warn about `UIBarButtonItem` and similar ctors

Open jonathanpeppers opened this issue 2 years ago • 0 comments

I don't think anything warns about code like this:

class MyView : UINavigationBar
{
    public class MyView()
    {
         Items = new[] { new UIBarButtonItem(OnButton) };
    }

    void OnButton(object sender, EventArgs e)
    {
    }
}

Note: I don't know if this code is exactly correct, this is from memory.

jonathanpeppers avatar Aug 28 '23 16:08 jonathanpeppers