2019年09月30日
Class LSApplicationWorkspace = objc_getClass("LSApplicationWorkspace"); id workspace = [LSApplicationWorkspace performSelector:NSSelectorFromString(@"defaultWorkspace")]; NS
2019年09月30日
#import <objc/runtime.h>
#import <dlfcn.h>
#import <mach-o/ldsyms.h>
unsigned int count;
const char **classess;
Dl_info info;
2019年09月05日
#ifdef DEBUG SEL sel = NSSelectorFromString(@"_enableRemoteInspector"); id cls = NSClassFromString(@"WebView"); IMP imp = [cls sel]; void (*func)(id, SEL) = (void *)imp; func(cls, sel);#endifadd to&nb
2018年10月30日
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #ffffff; background-color: #000000}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Menlo; color: #00a0ff; background-color: #000000}
p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font:
2018年08月07日
p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 22.0px Menlo; color: #ffffff; background-color: #000000}
p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; background-color: #000000; min-height: 14.0px}
span.s1 {color: #de38a5}
span.s2 {c
2017年09月27日
@interface NSArray (SubscriptKey)
@end
@implementation NSArray (SubscriptKey)
- (id)valueForUndefinedKey:(NSString *)key {
if ([key isEqualToString:@"size"]) {
&
2017年08月31日
This chapter describes assembler directives (also known as pseudo operations, or pseudo-ops), which allow control over the actions of the assembler.Directives for Designating the Current SectionThe assembler supports designation of arbitrar
2017年08月16日
我用连接使用的plist一个可执行-sectcreate __TEXT连接器选项。clang -Wl,-sectcreate,__TEXT,__info_plist,info.plist -dynamiclib -o a.dylib a.cppotool你可以用otool(1)转储包含嵌入的plist的部分内容:otool -s __TEXT __info_plist /path/to/executable 然后通过管道将其输出,以便获得相应的ASCII表示XXD(1):otool -
2017年08月09日
It's run when a shared library is loaded, typically during program startup.1. before mainvoid tmain() __attribute__((constructor(101))){
printf("abc\n");
}2.module inittypedef void (IN
2017年08月07日
当中 objc源文件中要写一个 JS 代码或 json, 怎样让它语法高亮方法如下:定义一个红#define JS(x) #x但上面的红有个问题,就是宏中不能有逗号,解决方案如下:p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 19.0px Helvetica; color: #eb905a; background-color: #000000}#define JS(...) #__VA_ARGS__实际效果如下.