[置顶] 常用技术网站

摘要: http://www.maczapp.com/charles抓包工具:Charles for Mac v3.9.1 http://www.cocoachina.com/ios/20160217/15328.html从零开始:你的第一个iOS App http://www.cnblogs.com/we 阅读全文

posted @ 2016-09-18 09:39 高彰 阅读(1419) 评论(0) 推荐(0) 编辑

2024年11月19日

iOS OC 导航栏自定义rightBarButtonItem

摘要: UIView *customView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 44)]; customView.backgroundColor = [UIColor lightGrayColor]; UILabel *label = 阅读全文

posted @ 2024-11-19 17:26 高彰 阅读(0) 评论(0) 推荐(0) 编辑

2024年11月5日

iOS OC 引导页UIScrollView和UICollectionView

摘要: 先看效果 下面的demo用户复制粘贴,稍微修改一下图片名称这些即可运行 1.UIScrollView的demo,用户先把几张照片放到项目中 GuidePageViewController.h #import <UIKit/UIKit.h> NS_ASSUME_NONNULL_BEGIN @inter 阅读全文

posted @ 2024-11-05 11:45 高彰 阅读(5) 评论(0) 推荐(0) 编辑

2024年10月28日

iOS OC 注册Cell

摘要: //注册普通cell [_tableView registerClass:[XLMinePanelCardSelectCell class] forCellReuseIdentifier:NSStringFromClass([XLMinePanelCardSelectCell class])]; / 阅读全文

posted @ 2024-10-28 11:54 高彰 阅读(3) 评论(0) 推荐(0) 编辑

2024年10月22日

微信小程序demo 游戏和一般组件

摘要: https://developers.weixin.qq.com/miniprogram/dev/devtools/devtools.html 游戏的 阅读全文

posted @ 2024-10-22 17:05 高彰 阅读(2) 评论(0) 推荐(0) 编辑

2024年10月18日

iOS OC tabbar的item文字默认选中是蓝色,修改选中颜色

摘要: - (UINavigationController *)navigationControllerWithRoot:(UIViewController *)rootViewController tabTitle:(NSString *)tabTitle imageName:(NSString *)im 阅读全文

posted @ 2024-10-18 14:18 高彰 阅读(16) 评论(0) 推荐(0) 编辑

2024年9月23日

iOS macOS OC 'unarchiveObjectWithData:' is deprecated: first deprecated in iOS 12.0 - Use +unarchivedObjectOfClass:fromData:error: instead

摘要: 'unarchiveObjectWithData:' is deprecated: first deprecated in iOS 12.0 - Use +unarchivedObjectOfClass:fromData:error: instead 在 iOS 开发中,随着版本的更新,一些 API 阅读全文

posted @ 2024-09-23 14:09 高彰 阅读(68) 评论(0) 推荐(0) 编辑

2024年9月20日

iOS 跳转到微信小程序demo(亲测有效)

摘要: 在iOS开发中,使用Objective-C (OC) 跳转到微信小程序,通常是通过URL Scheme的方式来实现的。微信小程序提供了URL Scheme的官方文档,允许开发者通过URL来打开小程序的特定页面。 微信小程序提供了URL Scheme的官方文档:https://developers.w 阅读全文

posted @ 2024-09-20 10:51 高彰 阅读(111) 评论(0) 推荐(0) 编辑

2024年9月19日

iOS MacOS 后台传BOOL值怎么接收demo,怎么打印BOOL值

摘要: 先上大招 已知obj[@"showBuy"]是后台返回的Json字段BOOL类型,直接打印结果 NSLog(@"hhhkkkkkkkk:%@",[obj[@"showBuy"] boolValue] ? @"YES":@"NO"); 详细分析 在iOS开发中,如果你正在使用Objective-C(O 阅读全文

posted @ 2024-09-19 10:17 高彰 阅读(21) 评论(0) 推荐(0) 编辑

2024年8月31日

iOS OC swift MyLayout早期自动布局框架(不是Masonry)

摘要: 一、简介 1、 MyLayout是一套iOS界面视图布局框架。MyLayout的内核是基于frame的设置,对UIView的layoutSubviews方法的重载以及对子视图的bounds和center属性的设置而实现的。MyLayout功能强大而且简单易用,它集成了:iOS Autolayout和 阅读全文

posted @ 2024-08-31 15:10 高彰 阅读(37) 评论(0) 推荐(0) 编辑

2024年7月8日

iOS OC 打印对象数组时候出现<XLDeviceModel: 0x3032a4a50>怎么样才能打印出对象数组里面的字段

摘要: Objective-C 中的 description 方法 在 Objective-C 中,description 方法是一个 NSObject 类的实例方法,用于返回对象的字符串表示。要打印出 XLDeviceModel 对象数组中的字段,你需要在 XLDeviceModel 类中实现这个方法。 阅读全文

posted @ 2024-07-08 16:52 高彰 阅读(3) 评论(0) 推荐(0) 编辑

导航