This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
WORKING_DIRECTORY="${PWD}/.motch" | |
BUILDED_IPA_PATH="${TARGET_IPA_PATH}" | |
EMBEDDED_IPA_PATH="${PWD}/Artifacts/Embedded.ipa" | |
EMBEDDED_CONTENTS_PATH="${WORKING_DIRECTORY}/embedded" | |
rm -rf "${WORKING_DIRECTORY}" || true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typedef NSString *SASheetPresentationControllerDetendIdentifier NS_TYPED_EXTENSIBLE_ENUM | |
API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos); | |
UIKIT_EXTERN const SASheetPresentationControllerDetendIdentifier SASheetPresentationControllerDetentIdentifierMaximum | |
API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos); | |
UIKIT_EXTERN const SASheetPresentationControllerDetendIdentifier SASheetPresentationControllerDetentIdentifierLarge | |
API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos); | |
UIKIT_EXTERN const SASheetPresentationControllerDetendIdentifier SASheetPresentationControllerDetentIdentifierMedium |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SAPatternReference | |
// | |
@interface SAPatternReference : NSObject | |
@property (nonatomic, readonly, strong) NSString *name; | |
@property (nonatomic, readonly, assign) Class klass; | |
- (instancetype)init NS_UNAVAILABLE; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// SA13SheetPresentationController | |
// | |
static Class _SA13SheetPresentationControllerKlass = nil; | |
API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(tvos, watchos) NS_SWIFT_UI_ACTOR | |
@interface SUI13SheetPresentationController : NSObject | |
@property (nonatomic, assign) BOOL shouldFullscreen; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface ViewController : UIViewController <UIViewControllerTransitioningDelegate> | |
@end | |
@implementation ViewController | |
- (instancetype)init | |
{ | |
self = [super init]; | |
if (self) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ident "@(#) Object.h, Rev 2.10, 96/08/02" | |
// | |
// Copyright (c) 1995-1996, Sun Microsystems, Inc. | |
// portions (c) Copyright 1988, 1989 NeXT, Inc. | |
// All rights reserved. | |
#ifndef _OBJC_OBJECT_H_ | |
#define _OBJC_OBJECT_H_ | |
#import <objc/objc.h> |