• 第28月第5天 uibutton交换方法


    1.

    //交换系统的方法
     
    
    1 @implementation UIControl (MYButton)
    2 + (void)load
    3 {
    4     Method a = class_getInstanceMethod(self, @selector(sendAction:to:forEvent:));
    5     Method b = class_getInstanceMethod(self, @selector(__my_sendAction:to:forEvent:));
    6     method_exchangeImplementations(a, b);
    7 }
    8 @end
    
     
    
    //定义自己的点击事件  
    
    
     1 - (void)__my_sendAction:(SEL)action to:(id)target forEvent:(UIEvent *)event
     2 {
     3     if (self.my_ignoreEvent) return;
     4     if (self.my_acceptEventInterval > 0)
     5     {
     6         self.my_ignoreEvent = YES;
     7         [self performSelector:@selector(setMy_ignoreEvent:) withObject:@(NO) afterDelay:self.my_acceptEventInterval];
     8     }
     9     [self __my_sendAction:action to:target forEvent:event];
    10 }

    https://www.cnblogs.com/ruihaha/p/5886304.html

    2.

    大概分为 分解成5个步骤:拆分为5个构建版本——分解为.o文件(*5)——删除第三方库(*5)——.o文件合成(*5)——合成兼容版本。

    https://blog.csdn.net/GigibondBaby/article/details/81237368

     

      504  lipo -info libanychatcore.a 

     

      507  lipo -extract_family arm64 -output libanychatcore_arm64_final.a libanychatcore.a 

     

      509  mkdir arm64

      510  cd arm64/

      511  ls

      512  ar -xv ../libanychatcore_arm64_final.a 

      513  ls

      514  objdump -d dictionary.o 

      515  objdump -r dictionary.o 

    https://blog.csdn.net/g1602333924/article/details/52768573?utm_source=blogkpcl14

  • 相关阅读:
    zabbix api
    pymssql
    ssh别名登录,非常适合从跳板机登录其他主机
    apache httpd 不记录head 的请求。
    mysqldump 参数--single-transaction
    Detect operating system [zabbix]
    mysql 审计server_audit 模块
    Execl矩阵如何转化成Pajek的net文件
    4、keepalived高可用nginx负载均衡
    3、使用keepalived高可用LVS实例演示
  • 原文地址:https://www.cnblogs.com/javastart/p/10224611.html
Copyright © 2020-2023  润新知