UIBlurEffect+LookinServer.h 415 B

12345678910111213141516
  1. //
  2. // UIBlurEffect+LookinServer.h
  3. // LookinServer
  4. //
  5. // Created by Li Kai on 2019/10/8.
  6. // https://lookin.work
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIBlurEffect (LookinServer)
  10. /// 该 number 包装的对象是 UIBlurEffectStyle,之所以用 NSNumber 是因为想把 0 和 nil 区分开,毕竟这里是在 hook 系统,稳一点好。
  11. @property(nonatomic, strong) NSNumber *lks_effectStyleNumber;
  12. @end