為了讓tabbar的按鈕沒有被選中時,仍然保持原來的顏色
//設定繪製模式,使不變灰
uitabbaritem *onebaritem = [[uitabbaritem alloc]init];
onebaritem.image = [[uiimage imagenamed:@"news"] imagewithrenderingmode:uiimagerenderingmodealwaysoriginal];
onebaritem.selectedimage = [uiimage imagenamed:@"news"];
onebaritem.title = @"按鈕";
使不選中的文字也不變灰色
//設定tebber選中時的顏色
// 設定tabber未選中字型顏色始終為白色
forstate:uicontrolstatenormal];
讓網頁不被快取的解決辦法
快取有利於網頁的載入速度,但有時候,我們不希望頁面被快取,那如何在頁面中宣告呢?其實在html語言中,有現成的禁止快取的方法,你只需在頁面的中加入以下幾行宣告 即可 前端資源分享 pragma content no cache cache control content no cache,must ...
遍歷後台的List,讓前台的多選寬被選中
後端 獲取優惠卷分頁資訊 param ph 包括查詢條件以及分頁查詢條件 override mapparam new hashmap datagrid param.put page ph.getpage 1 ph.getrows param.put rows ph.getrows param.put...
如何讓自己的Android程式永不被系統kill
相關知識 一般來說,在android 系統中,當某程序較長時間不活動,或系統資源比較緊時,該程序可能被系統 kill 掉,以此來 一些資源。android 系統會根據程序的優先順序來選擇性地殺死一些程序,優先順序從高到低依次是 1.前台程序 foreground process 2.可視程序 vis...