フォーク元 Devvix/NoCShare
Initial commit
このコミットが含まれているのは:
3
.gitignore
vendored
ノーマルファイル
3
.gitignore
vendored
ノーマルファイル
@ -0,0 +1,3 @@
|
||||
.DS_Store
|
||||
.theos
|
||||
packages
|
||||
10
Makefile
ノーマルファイル
10
Makefile
ノーマルファイル
@ -0,0 +1,10 @@
|
||||
INSTALL_TARGET_PROCESSES = SpringBoard
|
||||
|
||||
include $(THEOS)/makefiles/common.mk
|
||||
|
||||
TWEAK_NAME = NoCShare
|
||||
|
||||
NoCShare_FILES = Tweak.x
|
||||
NoCShare_CFLAGS = -fobjc-arc
|
||||
|
||||
include $(THEOS_MAKE_PATH)/tweak.mk
|
||||
1
NoCShare.plist
ノーマルファイル
1
NoCShare.plist
ノーマルファイル
@ -0,0 +1 @@
|
||||
{ Filter = { Bundles = ( "com.apple.UIKit" ); }; }
|
||||
15
Tweak.x
ノーマルファイル
15
Tweak.x
ノーマルファイル
@ -0,0 +1,15 @@
|
||||
@interface UIActivityContentViewController
|
||||
- (void) viewDidLoad;
|
||||
@property NSArray * airDropSlots;
|
||||
- (void) setAirDropSlots:(NSArray*)arg1;
|
||||
@end
|
||||
|
||||
%hook UIActivityContentViewController
|
||||
- (void) viewDidLoad {
|
||||
self.airDropSlots = [NSMutableArray new];
|
||||
}
|
||||
|
||||
- (void) setAirDropSlots:(NSArray*)arg1 {
|
||||
//Do nothing
|
||||
}
|
||||
%end
|
||||
新しいイシューから参照
ユーザーをブロックする