#include "../Foundation/Foundation.h"
Go to the source code of this file.
#define SPLIT_VIEW_DID_SUPPRESS_RESIZE_NOTIFICATION |
( |
) | |
((_suppressResizeNotificationsMask & DidSuppressResizeNotification) !== 0) |
#define SPLIT_VIEW_MAYBE_POST_DID_RESIZE |
( |
) | |
|
Value:if ((_suppressResizeNotificationsMask & ShouldSuppressResizeNotifications) !== 0) \
_suppressResizeNotificationsMask |= DidSuppressResizeNotification; \
else \
[self _postNotificationDidResize];
#define SPLIT_VIEW_MAYBE_POST_WILL_RESIZE |
( |
) | |
|
Value:if ((_suppressResizeNotificationsMask & DidPostWillResizeNotification) === 0) \
{ \
[self _postNotificationWillResize]; \
_suppressResizeNotificationsMask |= DidPostWillResizeNotification; \
}
#define SPLIT_VIEW_SUPPRESS_RESIZE_NOTIFICATIONS |
( |
|
shouldSuppress) | |
|
Value:if (shouldSuppress) \
_suppressResizeNotificationsMask |= ShouldSuppressResizeNotifications; \
else \
_suppressResizeNotificationsMask = 0;