iOS 面试必须会的---亲身经历+师兄面试后总结
2016-07-03 本文已影响6174人
语歌
1.冒泡排序
冒泡排序,必须掌握
int arr[8]={3,4,67,63,23,12,5,7,};
int n=sizeof(arr)/sizeof(int);
for (int i=0; i<n-1; i++)
{
for (int j=0; j<n-1-i;j++ )
{
if (arr[j]>arr[j+1])
{
arr[j]=arr[j]^arr[j+1];
arr[j+1]=arr[j]^arr[j+1];
arr[j]=arr[j+1]^arr[j];
}
}
}
除了冒泡排序外还有 插入排序,对比排序,这里举例冒泡排序
2.单例
.h文件
+(instancetype)Shared;
.m文件
static id instance;
+(instancetype)allocWithZone:(struct _NSZone * )zone
{
if (instance==nil)
{
@synchronized (self)
{
if (instance==nil)
{
instance=[super allocWithZone:zone];
}
}
}
return instance;
}
+(instancetype)Shared
{
if (instance==nil)
{
instance=[[self alloc]init];
}
return instance;
}
这里是同步加锁的方式,还有一种GCD的方式,就不举例了。
3.多线程 这个我有一章节专门介绍了全部的多线程
4.block
由于使用block很容易造成循环引用,一旦出现循环引用的话内存就得不到释放,因此一定要小心内存管理问题。
查询内存管理问题解决办法:
1.打印法
最好在基类controller下重写dealloc,加一句打印日志,
表示类可以得到释放。如果出现无打印信息,说明这个类一直得不到释放,表明很有可能是使用block的地方出现循环引用了。对于block中需要引用外部
controller的属性或者成员变量时,一定要使用弱引用,特别是成员变量像_testId这样的,很多人都没有使用弱引用,导致内存得不到释放。
对于普通所创建的对象,因为现在都是ARC项目,所以记住内存管理的黄金法则就可以解决。
2.利用instrument 检测内存泄露
在Xcode的instrument工具集可以很方便的检测循环引用
Product—>profile
选择 Leaks
之后点击运行
如果出现红色
点击Details->Cycles&Roots
内存泄露图.jpg如图
普通循环引用例子
NSMutableArray *oneArray = [NSMutableArray array];
NSMutableArray *twoArray = [NSMutableArray array];
[oneArray addObject:twoArray];
[twoArray addObject:oneArray];
block 循环引用的例子
.m文件
@property (nonatomic, copy) void(^block)();
@property (nonatomic, assign) NSInteger number;
- (void)test;
.h文件
- (void)test{
self.block = ^(){
NSLog(@"%ld",self.number);
};
//该引用解决办法把下面的注释打开,上面的注释掉
// __weak typeof(self) weakSelf = self;
//
// self.block = ^(){
// NSLog(@"%ld",weakSelf.age);
// };
}
- (void)dealloc
{
NSLog(@"this is dealloc");
//如果对象被销毁,则打印dealloc信息
}
某个运用该block的函数里面
YYGtest * Y = [[YYGtest alloc] init];
Y.number = 15;
[Y test];
5.SQLite数据库的增删改查操作
以下举例
在要操作的函数里面:
#import <sqlite3.h> //包含头文件
//获取路径
NSString * homePath=NSHomeDirectory();
NSString * docPath=[homePath stringByAppendingPathComponent:@"Documents"];
NSString * fileName=[docPath stringByAppendingPathComponent:@"db.splite”];
//对数据库进行操作
//打开数据库
sqlite3 * db;
if(sqlite3_open([fileName UTF8String], &db)!=SQLITE_OK)
{
NSLog(@"打开数据库失败!");
return;
}
//创建表
char * sql="create table if not exists t_user(username text primary key not null,password text not null)";
char * error;
if(sqlite3_exec(db, sql, NULL, NULL, &error)!=SQLITE_OK)
{
NSLog(@"创建表失败!(%s)",error);
}
//增加数据
NSString * sql=[NSString stringWithFormat:@"insert into t_user(username,password) values('%03d','123')”,20];
//sql="insert into t_user(username,password) values('123','123')";
if(sqlite3_exec(db, [sql UTF8String], NULL, NULL, &error)!=SQLITE_OK)
{
NSLog(@"插入数据失败!(%s)",error);
}
// 修改数据
sql=“update t_user set password='345' where username='123'";
if(sqlite3_exec(db, sql, NULL, NULL, &error)!=SQLITE_OK)
{
NSLog(@"修改数据失败!(%s)",error);
}
//删除数据
sql="delete from t_user where username='123'";
if(sqlite3_exec(db, sql, NULL, NULL, &error)!=SQLITE_OK)
{
NSLog(@"删除失败!(%s)",error);
}
//查询数据
sql="select * from t_user where username='112’";
sqlite3_stmt * stmt;
if(sqlite3_prepare_v2(db, sql, -1, &stmt, NULL)==SQLITE_OK)
{
//遍历
while(sqlite3_step(stmt)==SQLITE_ROW)//得到一行
{
const unsigned char * name=sqlite3_column_text(stmt, 0);
const unsigned char * pass=sqlite3_column_text(stmt, 1);
NSLog(@"username=%s,password=%s",name,pass);
}
}
sqlite3_finalize(stmt);
//关闭数据库
sqlite3_close(db);