http://bugzilla.novell.com/show_bug.cgi?id=551742

User [email protected] added comment
http://bugzilla.novell.com/show_bug.cgi?id=551742#c2


Mike Bluestein <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]




--- Comment #2 from Mike Bluestein <[email protected]>  2009-11-01 
16:05:05 MST ---
I tried wrapping the UIImagePickerController in a using (like below) and it
still leaks:

        void HandleCameraButtonTouchUpInside (object sender, EventArgs e)
        {        
            cameraButton.TouchUpInside += delegate {

                using (imPicker = new UIImagePickerController ()) {

                    imPicker.Delegate = new PickerDelegate ();

                    imPicker.SourceType =
UIImagePickerControllerSourceType.Camera;
                    imPicker.AllowsImageEditing = true;

                    aViewController.PresentModalViewController (imPicker,
true);
                }
            };    
        }

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to