摘要: #pragma - mark - 切换window RootViewController - (IBAction)loginBtn:(UIButton *)sender { AppDelegate* aud = (AppDelegate*)[UIApplication sharedApplicati 阅读全文
posted @ 2019-09-11 23:50 🍂浪迹天涯🍂 阅读(80) 评论(0) 推荐(0) 编辑
摘要: // // UIView+FindChildView.h // XibDemo // // Created by HELLO WORLD on 2019/9/11. // Copyright © 2019年 WaterProofer. All rights reserved. // #import 阅读全文
posted @ 2019-09-11 23:50 🍂浪迹天涯🍂 阅读(214) 评论(0) 推荐(0) 编辑
摘要: #define Spacing 10 //间隔距离 #define Btn_NUMs 3//每列个数 #define Btn_HEIGHT TRUEW(30) #define Btn_WIDTH ((SCREEN_WIDTH-(Btn_NUMs+1)*Spacing)/Btn_NUMs) [btn 阅读全文
posted @ 2019-09-11 16:23 🍂浪迹天涯🍂 阅读(152) 评论(0) 推荐(0) 编辑
摘要: $ git initInitialized empty Git repository in /Users/tianqixin/www/runoob/.git/ 现在你可以看到在你的项目中生成了 .git 这个子目录,这就是你的 Git 仓库了,所有有关你的此项目的快照数据都存放在这里。 .git 默 阅读全文
posted @ 2019-09-09 22:59 🍂浪迹天涯🍂 阅读(169) 评论(0) 推荐(0) 编辑
摘要: //md5加密方式一 +(NSString*)md5Str:(NSString *)str { const char* myPasswordd = str.UTF8String; unsigned char md5c[16]; CC_MD5(myPasswordd, (CC_LONG)strlen( 阅读全文
posted @ 2019-09-09 09:29 🍂浪迹天涯🍂 阅读(185) 评论(0) 推荐(0) 编辑
摘要: // // ZKFieldWithTitle.h // WaterProofer // // Created by ios on 2019/9/8. // Copyright © 2019年 WaterProofer. All rights reserved. // #import <UIKit/U 阅读全文
posted @ 2019-09-08 12:47 &#127810;浪迹天涯&#127810; 阅读(114) 评论(0) 推荐(0) 编辑
摘要: // // ZKAddressPickView.h // GoodsManager // // Created by HELLO WORLD on 2019/9/8. // Copyright © 2019年 HELLO WORLD. All rights reserved. // #import 阅读全文
posted @ 2019-09-08 12:17 &#127810;浪迹天涯&#127810; 阅读(108) 评论(0) 推荐(0) 编辑
摘要: // 防止多次调用 #define kPreventRepeatClickTime(_seconds_) \ static BOOL shouldPrevent; \ if (shouldPrevent) return; \ shouldPrevent = YES; \ dispatch_after 阅读全文
posted @ 2019-09-07 18:52 &#127810;浪迹天涯&#127810; 阅读(289) 评论(0) 推荐(0) 编辑
摘要: #import "UIButton+touch.h" #import<objc/runtime.h> @interface UIButton() /**bool 类型 设置是否执行点UI方法*/ @property (nonatomic, assign) BOOL isIgnoreEvent; @e 阅读全文
posted @ 2019-09-07 18:46 &#127810;浪迹天涯&#127810; 阅读(262) 评论(0) 推荐(0) 编辑
摘要: #define BUTTON_SPACING 10 //按钮间距 #define BORDER_SPACING 10 //边框间距 #define BUTTON_NUMS 3 //每行按钮个数 -(void)setButtonArray:(NSArray *)buttonArray{ _button 阅读全文
posted @ 2019-09-06 12:54 &#127810;浪迹天涯&#127810; 阅读(267) 评论(0) 推荐(0) 编辑