The warning generated by the code in this method -establishConnection is unavoidable. Disable the warning.

This commit is contained in:
Gregory John Casamento 2020-04-24 03:27:34 -04:00
parent 1a2ff4a40c
commit 6e3d3a87d8

View file

@ -466,6 +466,9 @@
return trigger;
}
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wcast-of-sel-type"
- (void) establishConnection
{
SEL sel = NSSelectorFromString(label);
@ -505,6 +508,8 @@
}
}
#pragma clang diagnostic pop
@end
@implementation IBOutletConnection