新建乙個類,繼承uiview,假設名為guide。在initwithframe方法裡:
cgfloat screenheight = [uiscreen mainscreen].bounds.size.height;
uiscrollview* scrollview = [[uiscrollview alloc] initwithframe:frame];
scrollview.backgroundcolor = [uicolor whitecolor]; scrollview.showshorizontalscrollindicator = no; scrollview.showsverticalscrollindicator = no; scrollview.contentsize = cgsizemake(320*4, screenheight); scrollview.pagingenabled = yes; for (int i=0; i<4; i++)
這樣,就有了乙個有4張的引導頁。
怎麼去判斷是不是第一次登陸呢,需要用到nsuserdefaults類。
在didfinishlaunchingwithoptions:函式中可以這樣判斷:
nsuserdefaults* userdefaults = [nsuserdefaults standarduserdefaults];
if([userdefaults objectforkey:@"firstload"] == nil)
iOS引導頁 啟動頁
前言 這裡使用launchscreen storyboard檔案建立啟 和引導頁。首次開啟專案或者更新後第一次開啟時展示引導頁,儲存有使用者資訊時進入首頁,否則進入登入註冊頁面。正文1.動態啟 將launchscreen.storyboard檔案上放入乙個。並新增約束,鋪滿整個頁面。為launchs...
iOS 引導頁實現
myintroductionview.h myintroductionview.m myintroductionpanel.h myintroductionpanel.m 這四個檔案,再加上一些影象資源加到你的工程中去。之後如果要修改影象等資源只要在相應位置修改就好了。在對應的.件中引入標頭檔案並且...
使用者引導頁 ios
儲存使用者的偏好設定 比如是否第一次啟動,使用者名稱,密碼等,nsuserdefault defaults nsuserdefaults standarduserdefaults 單例物件 bool islaunched defaults boolforkey lanou 建立判斷是否第一次啟動的鍵...