// uipagecontrol *pagecontrol = [[uipagecontrol alloc]initwithframe:cgrectmake(0, 100, 320, 40)];
// //十個小圓圈
// pagecontrol.numberofpages = 1;
// //當前是第二頁
// = 2;
// //不響應事件
// = no;
// //隱藏uicontrol
// pagecontrol.hidesforsinglepage = yes;
// [pagecontrol addtarget:self action:@selector(change:) forcontrolevents:uicontroleventvaluechanged];
// pagecontrol.backgroundcolor = [uicolor redcolor];
// [self.window addsubview:pagecontrol];
// [pagecontrol release];
//初始化乙個風火輪
// uiactivityindicatorview *activityview = [[uiactivityindicatorview alloc]initwithactivityindicatorstyle:uiactivityindicatorviewstylewhitelarge];
// //設定位置
// activityview.center = cgpointmake(160, 200);
// //開始轉動預設是靜止狀態
// [activityview startanimating];
// //靜止的時候不隱藏
// // activityview.hideswhenstopped = no;
// [self.window addsubview:activityview];
// [activityview release];
// // 新增動作
// [nstimer scheduledtimerwithtimeinterval:3 target:self selector:@selector(test:) userinfo:activityview repeats:no];
// //導航欄上的風火輪
//建立兩個button
uibutton
*button1 = [
uibutton
buttonwithtype:uibuttontyperoundedrect];
button1.frame = cgrectmake(10, 160, 100, 30);
[button1 settitle:
@"警告框
"forstate:uicontrolstatenormal];
[button1 addtarget:
self
action:
@selector
(showalertview) forcontrolevents:uicontroleventtouchupinside];
[self.window
addsubview:button1];
uibutton
*button2 = [
uibutton
buttonwithtype:uibuttontyperoundedrect];
button2.frame = cgrectmake(210, 160, 100, 30);
[button2 settitle:
@"action"
forstate:uicontrolstatenormal];
[button2 addtarget:
self
action:
@selector
(showactionsheet) forcontrolevents:uicontroleventtouchupinside];
[self.window
addsubview:button2];
[self
.window
makekeyandvisible];
return yes; }
//顯示當前頁碼數
//- (void)change:(uipagecontrol *)pagecontrol
////- (void)test:(nstimer *)timer
//int identifier = 1;
- (void)showalertview
- (void) showactionsheet
- (void)actionsheet:(uiactionsheet *)actionsheet clickedbuttonatindex:(nsinteger)buttonindex
- (void)alertview:(uialertview *)alertview clickedbuttonatindex:(nsinteger)buttonindex
geoserver新增外掛程式
erdasimg用於發布大資料量的影像,格式為img。優勢 支援大資料量,訪問速度快。劣勢 黑邊無法去掉,只能通過樣式調整。安裝步驟 3.解壓gdal data.zip。配置環境變數gdal data指向解壓的目錄。並給予users組下的使用者讀寫許可權。4.解壓gdal 1.9.2 msvc201...
vim 新增外掛程式
vim 的功能可以通過向它新增plugin得以擴充套件。所謂的plugin不過是乙個vim會自動載入執行的指令碼。把乙個指令碼放到你的plugin目錄就可以了,非常容易。plugin基本上分為兩類 全域性的 用於所有檔案 專用於某型別檔案的 只用於特定型別的一類檔案 當你啟動vim時它會自動的載入一...
wordpress新增外掛程式
剛剛安裝的worldpress比較簡陋,許多模組都沒有,如果我們不想手動編輯功能頁面的話,就可以選擇安裝外掛程式,這個過程看起來比較簡單,也有許多坑。筆者遇到的是許可權的問題,經搜尋後可以通過這篇文章解決。其中wp config這個檔案作者沒有交代,在筆者ubuntu伺服器目錄如下 var www ...