選択日にはKlazuka/Kalコントローラーを使用しています。今日より前の日付を無効にすることは可能ですか?以前の日付も別の色で作りたいです。
質問する
227 次
2 に答える
0
選択した日付の色を変更するには
--> KalTileView.h ファイルに移動します
in - (void)drawRect:(CGRect)rect メソッド
[[[UIImage imageNamed:@"Kal.bundle/kal_tile_today_selected.png"] stretchableImageWithLeftCapWidth:6 topCapHeight:0] drawInRect:CGRectMake(0, -1, kTileSize.width+1, kTileSize.height+1)]; // change your image name and put your mentioned image to Kal.bundle package
textColor = [UIColor whiteColor];
それが解決する
于 2012-07-03T07:56:56.680 に答える