Skip to content

Instantly share code, notes, and snippets.

View xcodereleases's full-sized avatar

Xcode Releases xcodereleases

View GitHub Profile
@xcodereleases
xcodereleases / main.m
Last active June 15, 2020 04:29
Extract beta information from a local copy of Xcode
#import <Cocoa/Cocoa.h>
@protocol FilePath <NSObject>
+ (instancetype)filePathForPathString:(NSString *)path;
@end
@protocol NamedVersion <NSObject>
- (NSString *)name;
@end