上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: /// 地区所有数据 let cityInfo = viewModel.allRegionSub.value /// 已订阅的地区数据 let areaIds: [Int?] = viewModel.subscribeRegionSub.value.map{$0.id} //通过id查询选择的省和直 阅读全文
posted @ 2021-12-17 09:35 super1250 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 2021-12-10 场景描述:在谁联系过我的列表中,点击查看电话号码,随着列表的滑动,号码是错乱的,有时候对,有时候错。 1、cell中,如果有按钮或者其他control事件,然后rx绑定事件的时候,在闭包回调里面,获取的indexpath可能是不正确的.(原因时,复用时,点击事件被多次订阅)如下 阅读全文
posted @ 2021-12-15 16:59 super1250 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 1.先获取最新版本号和本地版本号进行对比 2.去掉本地版本号上的 . 处理为Int类型 /// 获取是否需要审核时动态展示内容 /// true:审核通过 /// - Returns: 返回是否审核通过内容 func IsActive() -> Bool { if let newVersion = 阅读全文
posted @ 2021-12-14 09:42 super1250 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 调起相册 let imgSelectVC = TZImagePickerController(maxImagesCount: 1, columnNumber: 4, delegate: self, pushPhotoPickerVc: true) imgSelectVC?.allowPickingO 阅读全文
posted @ 2021-12-01 15:50 super1250 阅读(627) 评论(0) 推荐(0) 编辑
摘要: 解决方案是执行: pod repo update --verbose 再执行命令: pod install 如果还是出错,删除podfile.lock文件 如果还报错就删除 第三方库的版本再次执行pod install就可以了 //以下是报错的问题 superlee-MacBook-Pro ios_ 阅读全文
posted @ 2021-10-20 11:23 super1250 阅读(2142) 评论(1) 推荐(0) 编辑
摘要: http://laomengit.com/flutter/widgets/widgets_structure.html 控件大全import 'package:flutter/material.dart';class LayoutPage extends StatefulWidget { @over 阅读全文
posted @ 2020-11-04 14:26 super1250 阅读(169) 评论(0) 推荐(0) 编辑
摘要: import 'package:flutter/material.dart';class NextPage extends StatefulWidget { @override _NextPageState createState() => _NextPageState();}class Choic 阅读全文
posted @ 2020-11-04 11:07 super1250 阅读(313) 评论(0) 推荐(0) 编辑
摘要: MaterialApp({ Key key, this.title = '', // 设备用于为用户识别应用程序的单行描述 this.home, // 应用程序默认路由的小部件,用来定义当前应用打开的时候,所显示的界面 this.color, // 在操作系统界面中应用程序使用的主色。 this.t 阅读全文
posted @ 2020-10-27 17:55 super1250 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 高德导航更多按钮的点击视图 <自定义的> #import "MoreMenuView.h" #import <UIKit/UIKit.h> #import <AMapNaviKit/AMapNaviCommonObj.h> @protocol MoreMenuViewDelegate; @inter 阅读全文
posted @ 2020-09-16 10:32 super1250 阅读(243) 评论(0) 推荐(0) 编辑
摘要: SpeechSynthesizer.swift -- >类名 import Foundation ->> 依赖库头文件 import AVFoundation ->> 依赖库头文件 final class SpeechSynthesizer: NSObject, AVSpeechSynthesize 阅读全文
posted @ 2020-09-16 10:28 super1250 阅读(617) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页