tableview 点击cell 出现下拉菜单
摘要:.m 中 开始走起 NSIndexPath *selectIndex;//标记cell用 - (void)viewDidLoad{ selectIndex = nil; } //cell高度改变 -(CGFloat)tableView:(UITableView *)tableView heightF
阅读全文
一个标签功能 实现点击变色 限制数量
摘要:NSString *advantageStr;//接收亮点标签 NSArray *JobTagArry;//从后台返回的标签 NSMutableArray *selectArr;//接收点击的btn 进去没有标签 获取后台给的标签 CGFloat w = ([UIScreen mainScreen]
阅读全文
获取手机定位 在需要时候 提示
摘要:先添加Corelocation.framework框架 在info.plist中添加 Privacy - Location When In Use Usage Description string -需要你的同意 才能访问位置 在APPdelegate.m中 这里 启动的时候提示一次 #import
阅读全文
iOS 语音转文字
摘要:要求语音转文字 从网上找到一些代码 自己改了一下留存 目前能满足我的要求 其他跟着改进 首先加入框架XCode8以上,只有它之后的编译器里才有Speech.framework 在info.plist文件中添加 Privacy - Speech Recognition Usage Descriptio
阅读全文
textView 简单应用
摘要:{ UITextView *ownTextView;// 自我介绍 UILabel *ownLabel; UILabel *numLabel; } 先添加UITextViewDelegate ownTextView = [[UITextView alloc]initWithFrame:CGRectM
阅读全文
键盘 应用
摘要:第一个 监听键盘弹出高度 避免遮挡页面 网上找的 存起来 viewDidLoad里 // 监听键盘通知 [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardWillShow:) name:U
阅读全文
UITextField.placeholder 颜色修改
摘要:一种 TextField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:TextField.placeholder attributes:@{NSForegroundColorAttributeName: [UI
阅读全文