派生自 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
|
||||
在新工单中引用
屏蔽一个用户