Package apple.messageui.enums
Class MFMailComposeResult
- java.lang.Object
-
- apple.messageui.enums.MFMailComposeResult
-
public final class MFMailComposeResult extends java.lang.Object[@enum] MFMailComposeResult Composition result sent to the delegate upon user completion. This result will inform of the user's choice in regards to email composition. If the user cancels the composition, MFMailComposeResultCancelled will be sent to the delegate. Typically MFMailComposeResultSent or MFMailComposeResultSaved will be sent, but MFMailComposeResultFailed will be sent in the case of failure. Send may only be interpreted as a successful queueing of the message for later sending. The actual send will occur when the device is able to send. [@constant] MFMailComposeResultCancelled User canceled the composition. [@constant] MFMailComposeResultSaved User successfully saved the message. [@constant] MFMailComposeResultSent User successfully sent/queued the message. [@constant] MFMailComposeResultFailed User's attempt to save or send was unsuccessful.
-
-
Field Detail
-
Cancelled
public static final long Cancelled
- See Also:
- Constant Field Values
-
Saved
public static final long Saved
- See Also:
- Constant Field Values
-
Sent
public static final long Sent
- See Also:
- Constant Field Values
-
Failed
public static final long Failed
- See Also:
- Constant Field Values
-
-