摘要:
Intent intent = new Intent(context, PwdLoginActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); context.startActivity(intent); FLAG_ACT 阅读全文
摘要:
本地存储 替代 userDefault (也有iOS版本) MMKV:https://github.com/Tencent/MMKV 日志 logger:https://github.com/orhanobut/logger EventBus 跨页面传值 类似iOS的通知 https://githu 阅读全文
摘要:
Android的Manifest.xml文件是一个重要的配置文件,用于描述应用程序的各种信息,包括应用程序的包名、版本号、应用程序的入口Activity、权限要求等等。它的作用如下: 1.声明权限:Manifest文件可以声明应用程序需要使用的权限,例如访问网络、读写SD卡等。当用户安装应用程序时, 阅读全文
摘要:
UICollectionView的基础使用。 https://www.jianshu.com/p/34ab4bba228b 一定要切记,下面三个代理。不要搞混了。 UICollectionViewDataSource extension SearchHistoryView: UICollection 阅读全文
摘要:
本来某个三方库 300多M,结果只下载了5K左右。 解决方案 https://www.jianshu.com/p/ee6c0a412f11 原理就是 清除cocoapods缓存,重新更新cocoapods仓库,重新安装。以便于三方库的最新版本能下载下来。 或者去别的同事电脑上,以下路径里找到三方库的 阅读全文
摘要:
https://gitcode.com/xiaoleiiOS/XLScrollView/overview tableview实现下列方法,tableview和scrollview 能同时识别手势 /** 同时识别多个手势 @param gestureRecognizer gestureRecogni 阅读全文
摘要:
https://www.jianshu.com/p/3249b5731b50 阅读全文
摘要:
崩溃之前的代码 NSMutableDictionary *item = [NSMutableDictionary dictionaryWithDictionary:guaranteedModeDict]; NSMutableDictionary *modelDict = item[MODEL]; [ 阅读全文
摘要:
typealias ActionBlock = ((UIButton)->Void) extension UIButton { private struct AssociatedKeys { static var ActionBlock = "ActionBlock" static var Acti 阅读全文
摘要:
显示地图 https://lbsyun.baidu.com/faq/api?title=iossdk/guide/create-map/showmap 地图内显示标注小气泡 https://lbsyun.baidu.com/faq/api?title=iossdk/guide/interaction 阅读全文