有时间把平时用到的知识点总结下。下次遇见就不用再查各种资料啦
1.kvo 传值
b—>a在b的.h文件中,定义变量
@property (nonatomic, copy) NSString *string;
然后在需要传值的地方进行传值
-(void)buttonAction:(UIButton*)sender{
//KVO 把bTextField.text赋值给当前属性,在需要接收的地方监听当前属性
self.string = bTextField.text;}
在.a 中
/*
KVO创建。三步一定要写
1.注册观察者
2.KVO回调
3.移除观察者
*/
[bViewController addObserver:self forKeyPath:@"string" options:NSKeyValueObservingOptionNew context:nil];
2.通知传值
通知//通知传值 一般是用于回传//现在是A传到B //发送通知的方法 要写在执行方法里面
[[NSNotificationCenter defaultCenter]postNotificationName:@"tz" object:niluserInfo:@{@"key":aTextField.text}];
//如果是从A传到B的话,B.m里要创建一个init方法,在里面写监听并在里面创建接收容器才能成功(因为程序先执行init方法再到viewDidLoad方法,当传值过去时在init就开始监听,如果这里没有创建textField接收,那就传不过去了,所以要在init里同时创建接收器(生命周期的问题));
-(instancetype)init
{
if (self =[super init]) {
[[NSNotificationCenter defaultCenter] addObserver:selfselector:@selector(tzAction:) name:@"tz" object:nil];
bTextField =
[[UITextField alloc] initWithFrame:CGRectMake([UIScreen
mainScreen].bounds.size.width/2-50, 200, 100, 30)];
bTextField.layer.borderColor = [UIColor grayColor].CGColor;
bTextField.layer.borderWidth = 1;
[self.viewaddSubview:bTextField];
}return self;
}
- (void)tzAction:(NSNotification *)sender {
NSLog(@"aaa");
bTextField.text = sender.userInfo[@"key"];
}
移除通知
-(void)dealloc{
//移除所有的通知
[[NSNotificationCenter defaultCenter]removeObserver:self];
//移除某个通知
[[NSNotificationCenter defaultCenter]removeObserver:self name:@"tz" object:nil];
}
3.tableview设置footer
UIView *view = [[UIView alloc]init];
view.backgroundColor = [UIColor groupTableViewBackgroundColor];self.tableView.tableFooterView = view;
4.数组倒序
NSMutableArray *array = [NSMutableArray arrayWithObjects:@"1",@"2",@"3",nil];
NSArray* reversedArray = [[arrayreverseObjectEnumerator] allObjects];
5.App跳转至系统Settings
跳转在IOS8以上跟以下是有区别的,如果是IOS8以上可以如下设置:
NSURL *url = [NSURLURLWithString:UIApplicationOpenSettingsURLString];
if([[UIApplication sharedApplication]canOpenURL:url]) {
[[UIApplicationsharedApplication] openURL:url];
}
6.根据indexPath找到对应的cell
NSIndexPath *indexPath =[NSIndexPath indexPathForRow:3 inSection:0];
UITableViewCell*cell = [self.tableView cellForRowAtIndexPath:indexPath];
cell.detailTextLabel.text= [self.dateFormatterstringFromDate:self.pickerView.date];
7.定义一个简单的block传值
1.在需要传值的.h 文件中定义一个block
@property(strong,nonatomic)void(^calendarBlock)(NSDate* selectdate);
2.在需要传值的。M文件中,比如一个按钮的点击事件之类的地方进行判断,例如
- (IBAction)previousAction:(UIButton*)sender {
self.date= [selflastDay:self.date];
if(self.calendarBlock) {
self.calendarBlock(self.date);
}
3.在接收值的地方进行值的接收
calendar.calendarBlock= ^(NSDate*selectDate){
//获取到传过来的date};
8.如何让带有h5标签的内容正确展示
NSAttributedString* attrStr = [[NSAttributedStringalloc]initWithData:[self.shiftDutyRecorfModel.contentdataUsingEncoding:NSUnicodeStringEncoding]options:@{NSDocumentTypeDocumentAttribute:NSHTMLTextDocumentType}documentAttributes:nilerror:nil];
[self.handleWorkView.lab_countsetAttributedText:attrStr];
9.UITableView的Group样式下顶部空白处理
//分组列表头部空白处理
UIView *view = [[UIView
alloc] initWithFrame:CGRectMake(0, 0, 0, 0.1)];
self.tableView.tableHeaderView
= view;
10.回跳转到某个任意界面
//判断前面有没有SecondViewController,有的话pop到SecondViewController页面,否则不进行跳转
for(UIViewController*vcinself.navigationController.viewControllers)
{if([vcisKindOfClass:[MyListControllerclass]]){
[self.navigationControllerpopToViewController:vcanimated:YES];
return;}
}