iOS 面試必須會的---親身經歷+師兄面試後總結
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
如圖
普通迴圈引用例子
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);
明天繼續
相關文章
- java 面試總結(都是親身面試的經歷)Java面試
- 程式設計師面試題!親身經歷!程式設計師面試題
- 親歷騰訊WEB前端開發三輪面試經歷及面試題Web前端面試題
- Java程式設計師面試必須要掌握的面試題Java程式設計師面試題
- 關於ios多年面試的經驗總結iOS面試
- iOS 面試總結iOS面試
- 螞蟻、位元組、滴滴面試經歷總結面試
- 必須要會的 50 個 React 面試題React面試題
- 今年Android面試經歷的一些總結Android面試
- 必須要會回答的Java面試題(字串篇)Java面試題字串
- iOS 面試題總結iOS面試題
- 面試前必須要知道的Redis面試題Redis面試題
- 面試經歷面試
- 面試失敗經歷後感薦面試
- iOS面試題總結(七)iOS面試題
- iOS底層面試總結iOS面試
- iOS面試題總結(三)iOS面試題
- iOS面試題總結(五)iOS面試題
- iOS面試題總結(六)iOS面試題
- iOS面試題總結(四)iOS面試題
- iOS面試題總結(二)iOS面試題
- iOS面試題總結(一)iOS面試題
- 2018.4月份iOS面試經歷iOS面試
- 面試必刷:最有用的Mysql面試題,面試了無數公司總結的MySql面試題
- 面試官十年面試經驗總結面試
- 面試前必須要知道的21道Redis面試題Redis面試題
- 在面試前必須要知道的 Redis 面試內容面試Redis
- 2020畢業後我所經歷的面試【面試系列】 面試題四面試題
- 華為面試經歷面試
- 失業web前端工程師面試經歷Web前端工程師面試
- 聊聊程式設計師面試時,那些必須注意的事情程式設計師面試
- 2018年5-7月面試經歷總結:阿里面試題阿里面試題
- 2017 後端面試經歷分享後端面試
- IT大咖總結的面試真經面試
- 20道你必須要背會的微服務面試題,面試一定會被問到微服務面試題
- java面試題總結(開發者必備)Java面試題
- Java經典常用類總結(必須掌握!)Java
- 一個ios程式設計師年後找工作經歷(附上一些面試問題)iOS程式設計師面試