UIWebViewNavigationType defined as
typedef NS_ENUM(NSInteger, UIWebViewNavigationType) {
};
and NSInteger- this is intfor 32-bit and long64-bit platforms. Therefore you must distinguish the meaninglong
NSLog(@"expected:%ld, got:%ld", (long)UIWebViewNavigationTypeLinkClicked,
(long)navigationType);
( ) .