zoukankan      html  css  js  c++  java
  • 第2月第25天 BlocksKit

    1.blockskit

    https://github.com/zwaldowski/BlocksKit

     

    bk_showAlertViewWithTitle

     

    2.toast

    +(void)showToast:(NSString *)title inView:(UIView *)view{
        MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:view animated:YES];
        hud.mode = MBProgressHUDModeText;
        hud.labelText = title;
        hud.margin = 10.f;
        hud.yOffset = (kScreen_Height/2)-120;
        hud.removeFromSuperViewOnHide = YES;
        [hud hide:YES afterDelay:1.0];
    }

    3.dispatch_group_create

     

  • 相关阅读:
    PKU1008
    PKU 1007
    PKU 3983
    PKU 1005
    PKU1004
    PKU 1003解题
    new.target
    debugger 关键字
    React 高阶组件
    CSS|规范
  • 原文地址:https://www.cnblogs.com/javastart/p/6102156.html
Copyright © 2011-2022 走看看