Documentation Archive Developer
Search

MessageUI Changes for Swift

MessageUI

DeclarationProtocols
From
struct MessageComposeResult : RawRepresentable {
    init(_ rawValue: UInt32)
    init(rawValue rawValue: UInt32)
    var rawValue: UInt32
}
RawRepresentable
To
struct MessageComposeResult : RawRepresentable, Equatable {
    init(_ rawValue: UInt32)
    init(rawValue rawValue: UInt32)
    var rawValue: UInt32
}
Equatable, RawRepresentable

DeclarationProtocols
From
struct MFMailComposeErrorCode : RawRepresentable {
    init(_ rawValue: UInt32)
    init(rawValue rawValue: UInt32)
    var rawValue: UInt32
}
RawRepresentable
To
struct MFMailComposeErrorCode : RawRepresentable, Equatable {
    init(_ rawValue: UInt32)
    init(rawValue rawValue: UInt32)
    var rawValue: UInt32
}
Equatable, RawRepresentable

DeclarationProtocols
From
struct MFMailComposeResult : RawRepresentable {
    init(_ rawValue: UInt32)
    init(rawValue rawValue: UInt32)
    var rawValue: UInt32
}
RawRepresentable
To
struct MFMailComposeResult : RawRepresentable, Equatable {
    init(_ rawValue: UInt32)
    init(rawValue rawValue: UInt32)
    var rawValue: UInt32
}
Equatable, RawRepresentable

Protocols
FromAnyObject
To--

Protocols
FromAnyObject
To--