iPhone程式

  • warning: Creating default object from empty value in /home/xnvgu7/public_html/modules/taxonomy/taxonomy.pages.inc on line 34.
  • warning: Declaration of views_handler_argument::init(&$view, &$options) should be compatible with views_handler::init(&$view, $options) in /home/xnvgu7/public_html/sites/all/modules/views/handlers/views_handler_argument.inc on line 745.
  • warning: Declaration of views_handler_filter::options_validate(&$form, &$form_state) should be compatible with views_handler::options_validate($form, &$form_state) in /home/xnvgu7/public_html/sites/all/modules/views/handlers/views_handler_filter.inc on line 585.
  • warning: Declaration of views_handler_filter::options_submit(&$form, &$form_state) should be compatible with views_handler::options_submit($form, &$form_state) in /home/xnvgu7/public_html/sites/all/modules/views/handlers/views_handler_filter.inc on line 585.
  • warning: Declaration of views_handler_filter_boolean_operator::value_validate(&$form, &$form_state) should be compatible with views_handler_filter::value_validate($form, &$form_state) in /home/xnvgu7/public_html/sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc on line 149.
  • warning: Declaration of views_plugin_style_default::options(&$options) should be compatible with views_object::options() in /home/xnvgu7/public_html/sites/all/modules/views/plugins/views_plugin_style_default.inc on line 25.
  • warning: Declaration of views_plugin_row::options_validate($form, &$form_state) should be compatible with views_plugin::options_validate(&$form, &$form_state) in /home/xnvgu7/public_html/sites/all/modules/views/plugins/views_plugin_row.inc on line 135.
  • warning: Declaration of views_plugin_row::options_submit($form, &$form_state) should be compatible with views_plugin::options_submit(&$form, &$form_state) in /home/xnvgu7/public_html/sites/all/modules/views/plugins/views_plugin_row.inc on line 135.

UISwitch在iOS7改變了大小

iOS7有許多改變,尤其是UI,UISwitch在iOS7改變了大小。

iOS7的UISwitch是51x31,而iOS7之前UISwitch是79x27,所以:

UISwitch的位置會有所改變,需要用程式來更改其位置。例如使用center來更改其位置:

pagingEnabled.center = CGPointMake( spacing + self.pagingEnabled.frame.size.width / 2, pagingEnabled.center.y);

 

 

Missing recommended icon file ,apps用到的圖形檔

做一個app需要許多圖形檔,現在把一定要的檔案詳列於下:

Paginate html file in UIWebView 、 UIWebView分頁

Paginate html file in UIWebView 、 UIWebView分頁:2012-09-19星期三

Xcode4加快方法

Xcode4加快方法:2011年11月10日星期四

Xcode4很慢,尤其在舊Mac上(我的Mac mini是2GHz Intel Core 2 Duo,memory 1G DDR2、Bus 667Mhz),以下是三個加快方法(注意:先用Xcode4打開Xcode3的project或已用Xcode4產生了project):

UIToolbar上顯示不出UILable

UIToolbar上顯示不出UILable:2011年05月09日星期一

重覆使用UIView、UIScrollView

重覆使用UIView、UIScrollView..:2011年05月09日星期一

當一頁一頁使用UIView、UIScrollView..時,不能一直allocation UIView,需使用已不需要的UIView。

作法:

每alloc一次UIView,給個tag,例如:myUIView.tag = 999;

其次,假設該UIView myUIView是myScrollView的subView,則以,reuseUIView = [myScrollView viewWithTag:999];找到這個view,來重覆使用。

 

 

class間傳訊息

class間傳訊息:2011年05月10日星期二

有aClass及bClass,假設AClass會BClass *myBClass = [[BClass alloc] init];因此,可用myBClass去call任何BClass內method因而達到AClass傳訊息給BClass的目的。但是,如何在BClass內傳訊息給AClass呢?

NSURL load不到search query

NSURL load不到search query:2011年04月04日星期一

設定search engine string,例如:http://www.google.com/search?q=query(query內為八卦), 用q=query語法後,[myWebView loadrequest:request];竟load不到search結果。

UIImage在device無法imageNamed

UIImage在device無法imageNamed:2011年04月04日星期一

UIImage *myImage = [UIImage imageNamed:@"jesse.jpg"]; 竟然在device無法成功,但是用simulator卻OK。

tabbaritem的png無法顯示、是gray

tabbaritem的png無法顯示、是gray:2011年04月04日星期一

使用tabbarcontroller,需要更改tabbaritem上的image,一般都用.png檔,實作發現,許多.png檔無法顯示,呈現出來的是一片灰白-gray。

Xcode3.2.6+iOS4.2無法上傳iPhone

Xcode3.2.6+iOS4.2無法上傳iPhone:2011年04月04日星期一

若最近下載了Xcode3.2.6,選了Device/Debug後想將程式上傳iPhone測試,卻不成功,而有以下message,可繼續讀本文。

Can’t install application

The Info.plist for application at /Users/admin/Desktop/abc/def/build/Debug-iphoneos/def.app specifies a minimum OS version of 4.3, which is too high to be installed on someiPhoneDevice

Google API由經緯度查高度的iPhone程式

Google API由經緯度查高度的iPhone程式:2011年03月21日星期一

iPhone程式中若有了經緯度值,想找高度(離海平面標高),可用Google API,詳見Google Elevation API 一文。 下段程式碼即是:

iPhone Interface Builder之一

iPhone Interface Builder之一:2009年09月10日星期四

用Xcode3將程式放上iPhone的程序

用Xcode3將程式放上iPhone的程序:2009年11月03日星期二

iPhone SDK開發範例大全

訂閱文章