iOS 面試必須會的---親身經歷+師兄面試後總結

weixin_33890499發表於2016-07-03

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

如圖

2023329-ac21079573463f20.jpg
記憶體洩露圖.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);







明天繼續

相關文章