Avatar
Kishikawa Katsumi 8/11/2019 2:04 PM
+ (instancetype)layoutAnchorWithEdges:(NSDirectionalRectEdge)edges { if (@available(iOS 13, *)) { return [NSClassFromString(@"NSCollectionLayoutAnchor") layoutAnchorWithEdges:edges]; } else { return [[self alloc] initWithEdges:edges]; } } まあこれで良いんじゃないかな? #if __IPHONE_OS_VERSION_MAX_ALLOWED >= 130000 はXcodeがundefined symbolと言ってくるので仕方なくつけたもので、こっちの方がシンプルだし。