1.isKindOfClass和isMemberOfClass之间的区别
isKindOfClass用来确定一个对象是否是一个类的实例,或者是该类祖先类的实例。
isMemberOfClass只能用来判断前者,不能用来判断后者。
2.懒加载
1.懒加载概念
懒加载——也称为延迟加载,即在需要的时候才加载(效率低,占用内存小)。所谓懒加载,写的是其get方法.
注意:如果是懒加载的话则一定要注意先判断是否已经有了,如果没有那么再去进行实例化
2.使用懒加载的好处:
(1)不必将创建对象的代码全部写在viewDidLoad方法中,代码的可读性更强
(2)每个控件的getter方法中分别负责各自的实例化处理,代码彼此之间的独立性强,松耦合
#import "MyViewController.h"
@interface MyViewController ()
@property (nonatomic, strong) UILabel *label;
@property (nonatomic, strong) NSArray *array;
@end
@implementation MyViewController
- (void)viewDidLoad{
[super viewDidLoad];
[self change];
}
// 先get再set
- (void)change {
NSDate *date = [NSDate date];
[self.label setText:[NSString stringWithFormat:@"%@",[date description]]];
}
// 延迟加载
- (UILabel *)label {
//判断是否已经有了,若没有,则进行实例化
if (!_label) {
_label=[[UILabel alloc]initWithFrame:CGRectMake(20, 10, 300, 30)];
[_label setTextAlignment:NSTextAlignmentCenter];
[self.view addSubview:_label];
}
return _label;
}
// array的get方法
- (NSArray *)array {
if (_array == nil) {
NSString *path = [[NSBundle mainBundle] pathForResource:@"data" ofType:@"plist"];
_array = [[NSArray alloc]initWithContentsOfFile:path];
}
return _array;
}
@end
3.关于键盘
// 1.监听键盘的通知方法一
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillChangeFrame:) name:UIKeyboardWillChangeFrameNotification object:nil];
// 当键盘改变了frame(位置和尺寸)的时候调用
- (void)keyboardWillChangeFrame:(NSNotification *)note
{
// 设置窗口的颜色
self.view.window.backgroundColor = self.tableView.backgroundColor;
// 0.取出键盘动画的时间
CGFloat duration = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];
// 1.取得键盘最后的frame
CGRect keyboardFrame = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];
// 2.计算控制器的view需要平移的距离
CGFloat transformY = keyboardFrame.origin.y - self.view.frame.size.height;
// 3.执行动画
[UIView animateWithDuration:duration animations:^{
self.backgroundView.transform = CGAffineTransformMakeTranslation(0, transformY);
self.view.transform = CGAffineTransformMakeTranslation(0, transformY);
}];
}
// 2.监听键盘的通知方法二
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(beginEditText:) name:UITextFieldTextDidBeginEditingNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(endEditText:) name:UITextFieldTextDidEndEditingNotification object:nil];
- (void)beginEditText:(NSNotification *)notification{
NSLog(@"开始编辑");
CGRect frame = self.backgroundView.frame;
frame.origin.y -= 258;
self.backgroundView.frame = frame;
}
- (void)endEditText:(NSNotification *)notification{
NSLog(@"结束编辑");
CGRect frame = self.backgroundView.frame;
frame.origin.y += 258;
self.backgroundView.frame = frame;
}
// 3. 几个常量
UIKeyboardAnimationCurveUserInfoKey = 7; // 动画的执行节奏(速度)
UIKeyboardAnimationDurationUserInfoKey = "0.25"; // 键盘弹出\隐藏动画所需要的时间
UIKeyboardBoundsUserInfoKey = "NSRect: {{0, 0}, {320, 216}}";
UIKeyboardCenterBeginUserInfoKey = "NSPoint: {160, 588}";
UIKeyboardCenterEndUserInfoKey = "NSPoint: {160, 372}";
UIKeyboardFrameChangedByUserInteraction = 0;
// 键盘弹出(隐藏)
UIKeyboardFrameBeginUserInfoKey // 键盘刚弹出(隐藏)那一刻的frame
UIKeyboardFrameEndUserInfoKey // 键盘弹出(隐藏)完毕后的frame
4.SEL的简单总结
SEL就是对方法的一种包装。包装的SEL类型数据它对应相应的方法地址,找到方法地址就可以调用方法。在内存中每个类的方法都存储在类对象中,每个方法都有一个与之对应的SEL类型的数据,根据一个SEL数据就可以找到对应的方法地址,进而调用方法。
给自定义view添加点击事件
@interface MyButton : UIView
@property(nonatomic,assign)id target;
@property(nonatomic,assign)SEL action;
// target:目标button执行哪一个类的方法,对应的目标就是那个类的对象
// action:动作,让button具体做什么事,执行的方法就是对应的动作
- (void)addNewTarget:(id)target Action:(SEL)action;
- (void)addNewTarget:(id)target Action:(SEL)action{
// 实现对应的自定义方法,并且让两个属性来保存对应的目标和动作
self.action = action;
self.target = target;
}
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
// 类把她的方法,交给MyButton来完成
[self.target performSelector:self.action withObject:self];
}
初始化一个myButton
[myButton addNewTarget:self Action:@selector(click:)];
5.UINavigationBar小结
// 1.设置导航栏的标题
self.navigationItem.title = @"UINavigationBar使用总结";
// 2.通过barTintColor来设置背景色
self.navigationController.navigationBar.barTintColor = [UIColor redColor];
// 3.设置返回按钮的颜色
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
// 4.设置返回按钮的图片
- (void)setBackButtonWithImage {
UIImage *leftButtonIcon = [[UIImage imageNamed:@"LeftButton_back_Icon"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithImage:leftButtonIcon style:UIBarButtonItemStyleBordered target:self action:@selector(goToBack)];
// 修复navigationController侧滑关闭失效的问题
self.navigationController.interactivePopGestureRecognizer.delegate = (id)self;
}
UIImageRenderingModeAlwaysOriginal 表示总是用原图渲染,如果不这么设置,返回按钮将会显示tintColor的颜色(默认为蓝色)。UITabbarItem也存在同样地问题。我们自己设置返回按钮,会导致系统的侧滑关闭效果失效。添加上面代码中最后一句代码即可修复。
// 5.隐藏导航栏底部的线条方法一
UINavigationBar *navigationBar = self.navigationController.navigationBar;
//设置透明的背景图,便于识别底部线条有没有被隐藏
[navigationBar setBackgroundImage:[[UIImage alloc] init]
forBarPosition:UIBarPositionAny
barMetrics:UIBarMetricsDefault];
// 此处使底部线条失效
[navigationBar setShadowImage:[UIImage new]];
// 6.隐藏导航栏底部的线条方法二
self.navigationController.navigationBar.clipsToBounds = YES;
// 7.设置导航栏底部线条颜色
UINavigationBar *navigationBar = self.navigationController.navigationBar;
[navigationBar setBackgroundImage:[[UIImage alloc] init]
forBarPosition:UIBarPositionAny
barMetrics:UIBarMetricsDefault];
// 此处使底部线条颜色为红色, 调用如下颜色转图片的代码
[navigationBar setShadowImage:[self imageWithColor:[UIColor redColor]]];
// 颜色转图片的代码:
- (UIImage *)imageWithColor:(UIColor *)color
{
CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, rect);
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
6.将字符串进行MD5加密,返回加密后的字符串。MD5加密算法多数用于验证,比如说密码匹配用的就是MD5加密后得到的数值。
import <CommonCrypto/CommonDigest.h>
-(NSString *)md5:(NSString *)str {
const char *cStr = [str UTF8String];//转换成utf-8
unsigned char result[16];//开辟一个16字节(128位:md5加密出来就是128位/bit)的空间(一个字节=8字位=8个二进制数)
CC_MD5( cStr, strlen(cStr), result);
/*
extern unsigned char *CC_MD5(const void *data, CC_LONG len, unsigned char *md)官方封装好的加密方法
把cStr字符串转换成了32位的16进制数列(这个过程不可逆转) 存储到了result这个空间中
*/
return [NSString stringWithFormat:
@"%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X%02X",
result[0], result[1], result[2], result[3],
result[4], result[5], result[6], result[7],
result[8], result[9], result[10], result[11],
result[12], result[13], result[14], result[15]
];
/*
x表示十六进制,%02X 意思是不足两位将用0补齐,如果多余两位则不影响
NSLog("%02X", 0x888); //888
NSLog("%02X", 0x4); //04
*/
}
常用博客