mirror of
https://github.com/LeoNatan/LNPopupController.git
synced 2026-07-30 16:11:51 +00:00
19 lines
345 B
Objective-C
19 lines
345 B
Objective-C
//
|
|
// NSObject+XcodeBugs.m
|
|
// LNPopupControllerExample
|
|
//
|
|
// Created by Leo Natan on 7/11/19.
|
|
// Copyright © 2019 Leo Natan. All rights reserved.
|
|
//
|
|
|
|
#import "NSObject+XcodeBugs.h"
|
|
|
|
@implementation NSObject (XcodeBugs)
|
|
|
|
- (void)setValue:(id)value forUndefinedKey:(NSString *)key
|
|
{
|
|
//Ignore Xcode 11 IB bugs on iOS 10 🤦♂️
|
|
}
|
|
|
|
@end
|