上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 37 下一页

2022年1月26日

Mac下更新Python3

摘要: mac自带的python版本是2.7以下,不能满足我开发的要求 terminal下通过如下命令安装 brew install python3 若没有权限,一定会报异常 Error: Permission denied @ dir_s_mkdir - /usr/local/Frameworks 解决办 阅读全文

posted @ 2022-01-26 18:32 高彰 阅读(530) 评论(0) 推荐(0) 编辑

Mac 错误提示:zsh: command not found: brew解决方法

摘要: Mac平台出现brew command not found问题解决方法 错误提示:zsh: command not found: brew 解决方法:mac 安装homebrew, 用以下命令安装,序列号选择中科大(1)的 /bin/zsh -c "$(curl -fsSL https://gite 阅读全文

posted @ 2022-01-26 18:31 高彰 阅读(2542) 评论(0) 推荐(0) 编辑

2022年1月24日

iOS 防止用户重复点击按钮多次请求

摘要: /** 点击了导航栏右边按钮点击事件 */ - (void)rightItemClicked { self.rightItem.enabled = NO; [self performSelector:@selector(changeButtonStatus) withObject:nil after 阅读全文

posted @ 2022-01-24 16:58 高彰 阅读(502) 评论(0) 推荐(0) 编辑

2022年1月11日

iOS 导航栏返回把样式带回前面怎么办

摘要: //设置当前页面导航栏 - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; // 让导航栏背景透明 self.navigationController.navigationBar.tintColor = [ 阅读全文

posted @ 2022-01-11 11:13 高彰 阅读(47) 评论(0) 推荐(0) 编辑

2022年1月4日

iOS 中UIButton中文字换行

摘要: UIButton *button =[[UIButton alloc]initWithFrame:CGRectMake(100, 100, 200, 40)]; button.backgroundColor = [UIColor redColor]; [button setTitle:@"我是Che 阅读全文

posted @ 2022-01-04 14:52 高彰 阅读(500) 评论(0) 推荐(0) 编辑

2021年12月29日

iOS开发你可能不知道的细节:UITextField清空按钮

摘要: 不知道你有没有发现,很多细节功能,系统本来就有的,但是你不知道,然后傻乎乎的自己自定义、封装、各种控件混搭、终于实现了一下小小的功能。但是,这结果就是,代码冗余、维护成本高。 以前,看到别人的UITextField输入框输入内容时尾部自动弹出一个删除按钮,觉得是个好东西,于是乎自己自定义了一个UIV 阅读全文

posted @ 2021-12-29 15:23 高彰 阅读(563) 评论(0) 推荐(0) 编辑

2021年12月28日

iOS uiview添加背景图案

摘要: 1. UIImage *image = [UIImage imageNamed:@"me_Framebackgroud.png"]; view.layer.contents = (id) image.CGImage; // 如果需要背景透明加上下面这句 view.layer.backgroundCo 阅读全文

posted @ 2021-12-28 13:59 高彰 阅读(88) 评论(0) 推荐(0) 编辑

2021年12月24日

iOS 给UIimageView添加UITapGestureRecognizer手势点击事件

摘要: 在Iphone开发中,像UIimageView是不支持点击的,但往往我们却有很多能在Image上点击的需求 /** 用户头像 */ @property (nonatomic, weak) UIImageView *iconView; #pragma mark - 延迟加载 /** 用户头像 */ - 阅读全文

posted @ 2021-12-24 10:52 高彰 阅读(399) 评论(0) 推荐(0) 编辑

2021年12月16日

iOS延时定时功能

摘要: dispatch_time_t timer = dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC); dispatch_after(timer, dispatch_get_main_queue(), ^{ NSLog(@"这里延时1秒后做事。"); 阅读全文

posted @ 2021-12-16 19:51 高彰 阅读(36) 评论(0) 推荐(0) 编辑

2021年12月7日

iOS 识别图片二维码demo,复制粘贴即用

摘要: #import "ViewController.h" @interface ViewController ()<UIImagePickerControllerDelegate,UINavigationControllerDelegate> /** 背景图片 */ @property (nonatom 阅读全文

posted @ 2021-12-07 17:06 高彰 阅读(177) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 37 下一页

导航