Min〆 发表于 2015-7-23 14:08:14

IOS隐藏通知中心白色分割线 - Hide NC Lines

IOS隐藏通知中心白色分割线 - Hide NC Lines


预览图:

代码如下:
%hook SBNotificationSeparatorView
+(id)separatorForCurrentState {
                return nil;
}

+(int)separatorViewModeForCurrentState {
                return 0;
}

+(id)separatorWithScreenScale:(float)screenScale mode:(int)mode {
                return nil;
}

-(void)setBounds:(CGRect)bounds {

}

-(void)setFrame:(CGRect)frame {

}

-(void)updateForCurrentState {

}
-(id)initWithFrame:(CGRect)frame mode:(int)mode {
                return nil;
}
%end

%hook SBNotificationCenterSeparatorView
-(id)initWithFrame:(CGRect)theRect mode:(int)theInt {
            return nil;
}
%end



creantan 发表于 2015-7-23 14:43:29

多多发原创教程哦。。。鼓励下{:soso_e179:}

Dxer 发表于 2015-7-24 14:07:38

最近论坛那来了 好多移动的大牛哦。不错。支持下

意净无柒 发表于 2019-12-6 15:56:55

{:biggrin:}{:biggrin:}{:biggrin:}{:biggrin:}{:biggrin:}{:biggrin:}

liujinze 发表于 2020-5-1 15:20:19

好久没用苹果,这个区别我都看不出来了
页: [1]
查看完整版本: IOS隐藏通知中心白色分割线 - Hide NC Lines