上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 41 下一页
摘要: 1.链接USB 在MAC 上 2.打开Xcode 3.点击Window >Devices >在右侧可查看到identifier identifier即为我们获取到的iPhone 的UDID 链接:https://www.jianshu.com/p/bef1f39529b8 阅读全文
posted @ 2023-04-17 14:33 懂事长qingzZ 阅读(1256) 评论(0) 推荐(0)
摘要: 创建一个 .gitignore的隐藏文件 粘贴下边的代码 # Created by https://www.toptal.com/developers/gitignore/api/objective-c # Edit at https://www.toptal.com/developers/giti 阅读全文
posted @ 2022-11-10 11:35 懂事长qingzZ 阅读(243) 评论(0) 推荐(0)
摘要: 参考: https://www.jianshu.com/p/6934f9f8a41b 阅读全文
posted @ 2022-02-21 11:53 懂事长qingzZ 阅读(225) 评论(0) 推荐(0)
摘要: 先请求相册权限 在获取到权限后 同时将注册该通知放到异步注册 https://www.jianshu.com/p/4b62f5a70632 阅读全文
posted @ 2022-01-19 15:26 懂事长qingzZ 阅读(360) 评论(0) 推荐(0)
摘要: UITableView *tableView = [[UITableView alloc] initWithFrame:CGRectZero style:(UITableViewStyleGrouped)]; 解决方法: tableView.tableHeaderView = [[UIView al 阅读全文
posted @ 2021-12-30 17:58 懂事长qingzZ 阅读(57) 评论(0) 推荐(0)
摘要: - (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText { if (searchText.length == 0) { [self performSelector:@selector(hideKe 阅读全文
posted @ 2021-10-14 10:36 懂事长qingzZ 阅读(486) 评论(0) 推荐(0)
摘要: #pragma mark - 是否开启APP推送 /**是否开启推送*/ - (BOOL)isSwitchAppNotification { if ([UIDevice currentDevice].systemVersion.doubleValue >= 10.0) { __block BOOL 阅读全文
posted @ 2021-09-18 16:08 懂事长qingzZ 阅读(214) 评论(0) 推荐(0)
摘要: ///绘图显示 -(UIImage*)OriginImage:(UIImage *)image scaleToSize:(CGSize)size { UIGraphicsBeginImageContext(size); //size 为CGSize类型,即你所需要的图片尺寸 [image drawI 阅读全文
posted @ 2021-09-09 11:23 懂事长qingzZ 阅读(168) 评论(0) 推荐(0)
摘要: 1.官网下载地址 https://sunlogin.oray.com/download/ 2. 3. 苹果手机 使用过第二个远协,进行远程控制,不要使用第一个设备里面的远程控制 永远报错 参考 https://blog.csdn.net/qq_41949807/article/details/115 阅读全文
posted @ 2021-08-31 14:52 懂事长qingzZ 阅读(2061) 评论(0) 推荐(0)
摘要: -(void)scrollViewDidScroll:(UIScrollView *)scrollView{ CGFloat sectionHeaderHeight = section的高度; if (scrollView.contentOffset.y <= sectionHeaderHeight 阅读全文
posted @ 2021-08-30 10:03 懂事长qingzZ 阅读(84) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 41 下一页