// // Use this file to import your target's public headers that you would like to expose to Swift. // #import #import NS_INLINE NSException * _Nullable catchNSException(void(^_Nonnull tryBlock)(void)) { @try { tryBlock(); } @catch (NSException *exception) { return exception; } return nil; } // Define this private method so we can override it from MultiColumnCollectionViewLayout. @interface UICollectionViewLayout (Tusker_Hacks) -(UICollectionViewLayoutInvalidationContext *)_invalidationContextForUpdatedLayoutMargins:(UIEdgeInsets)newMargins; @end