2013-01-02 56 views
2

enter image description hereI am displaying sample calendar image for reference如何設置默認日曆和自定義日曆的內部背景圖像

我新的iOS應用程序Development.I google搜索,但沒有相應的結果發現。 我想將背景圖像設置爲calendar.i想要在日曆內應用背景圖像,而不是在其外面。任何替代做任務。 任何有價值的建議將不勝感激。

「由於提前」

+0

你嘗試過在該視圖中類似控制器設置圖像中的背景self.view.backgroundColor = [UIColor colorWithPatternImage: [UIImage imageNamed:@「YOUR_IMAGE」]]; – SachinVsSachin

+0

我試過了,但圖像沒有設置... – Vidhyanand

+0

你可以分享代碼嗎? – SachinVsSachin

回答

3

試試這個http://www.cocoacontrols.com/platforms/ios/controls/ckcalendar

編輯代碼

在這個例子中 添加以下的CKViewController.m

- (id)init { 
     calendar.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"bird.jpg"]]; 
    } 

而且使evertthing在這個方法行clearcolor(或根據你的重新需要)在- (void)layoutSubviewsCKCalendarView.m

+0

我想設置日曆裏面的背景圖像不是背面..... – Vidhyanand

+0

我想設置日曆裏面日期的整個塊背面的背景圖像..... – Vidhyanand

+0

仍然要在tapku庫設置第二個鏈接。 ..我現在會做 – Vidhyanand

2

似乎你正在使用CKCalendar。 設置背景圖片,

嘗試此

self.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]]; 

- (void)setDefaultStyle 
{ 
} 

方法從CKCalendarView.m

+0

我試着用它,但我想設置日曆裏面的背景圖像不是背面..... – Vidhyanand

+0

有沒有什麼辦法可以添加dateItem背景圖片? –