我新的iOS應用程序Development.I google搜索,但沒有相應的結果發現。 我想將背景圖像設置爲calendar.i想要在日曆內應用背景圖像,而不是在其外面。任何替代做任務。 任何有價值的建議將不勝感激。
「由於提前」
我新的iOS應用程序Development.I google搜索,但沒有相應的結果發現。 我想將背景圖像設置爲calendar.i想要在日曆內應用背景圖像,而不是在其外面。任何替代做任務。 任何有價值的建議將不勝感激。
「由於提前」
試試這個http://www.cocoacontrols.com/platforms/ios/controls/ckcalendar
編輯代碼
在這個例子中 添加以下的CKViewController.m
- (id)init {
calendar.backgroundColor=[UIColor colorWithPatternImage:[UIImage imageNamed:@"bird.jpg"]];
}
而且使evertthing在這個方法行clearcolor(或根據你的重新需要)在- (void)layoutSubviews
的CKCalendarView.m
我想設置日曆裏面的背景圖像不是背面..... – Vidhyanand
我想設置日曆裏面日期的整個塊背面的背景圖像..... – Vidhyanand
仍然要在tapku庫設置第二個鏈接。 ..我現在會做 – Vidhyanand
似乎你正在使用CKCalendar
。 設置背景圖片,
嘗試此
self.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"image.png"]];
在
- (void)setDefaultStyle
{
}
方法從CKCalendarView.m
我試着用它,但我想設置日曆裏面的背景圖像不是背面..... – Vidhyanand
有沒有什麼辦法可以添加dateItem背景圖片? –
你嘗試過在該視圖中類似控制器設置圖像中的背景self.view.backgroundColor = [UIColor colorWithPatternImage: [UIImage imageNamed:@「YOUR_IMAGE」]]; – SachinVsSachin
我試過了,但圖像沒有設置... – Vidhyanand
你可以分享代碼嗎? – SachinVsSachin