Contents

sel_isEqual(_:_:)

Returns a Boolean value that indicates whether two selectors are equal.

Declaration

func sel_isEqual(_ lhs: Selector, _ rhs: Selector) -> Bool

Parameters

  • lhs:

    The selector to compare with rhs.

  • rhs:

    The selector to compare with lhs.

Return Value

YES if rhs and rhs are equal, otherwise NO.

Discussion

sel_isEqual is equivalent to ==.

See Also

Working with Selectors