• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

iphone - 使用 Tapku Calendar 创建透明日历

[复制链接]
菜鸟教程小白 发表于 2022-12-13 04:03:07 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

首先,我要感谢本网站上所有有用的答案。我大约六个月前开始编程,我学到的很多东西都是从这里的问题/答案中学到的。

我在一个 iPhone 项目中使用 Tapku Library 中的日历,并希望日历图 block 是透明的,以便我可以看到 TKCalendarMonthView View 后面的 View 。

我使用 this tutorial 中的代码实现了 TKCalendarMonthView由本杰明· PIL 森撰写。

然后我删除了平铺图像并尝试了 this answer 中的代码@Jacques,所以 TKCalendarMonthView.m 中的 drawrect 函数看起来像这样:

- (void) drawRectCGRect)rect {

//From Jacques' StackOverflow answer (I also put this in the init)
self.opaque = NO;
self.backgroundColor = [UIColor clearColor];


//From Jacques' answer
[[UIColor clearColor] setFill
 ];
UIRectFill(rect);

//Remove CGContextRef
    //CGContextRef context = UIGraphicsGetCurrentContext();
    //UIImage *tile = [UIImage imageWithContentsOfFile:TKBUNDLE(@"TapkuLibrary.bundle/Images/calendar/Month Calendar Date Tile.png")];

CGRect r = CGRectMake(0, 0, 46, 44);

//From Jacques' StackOverflow answer
[[UIColor clearColor] setFill];
UIRectFill(r);

//Remove this sense we won't use the tile image
//CGContextDrawTiledImage(context, r, tile.CGImage);


if(today > 0){
    int pre = firstOfPrev > 0 ? lastOfPrev - firstOfPrev + 1 : 0;
    int index = today +  pre-1;
    CGRect r =[self rectForCellAtIndex:index];
    r.origin.y -= 7;

    //Don't use image here
    //[[UIImage imageWithContentsOfFile:TKBUNDLE(@"TapkuLibrary.bundle/Images/calendar/Month Calendar Today Tile.png")] drawInRect:r];
}

int index = 0;

UIFont *font = [UIFont boldSystemFontOfSize:dateFontSize];
UIFont *font2 =[UIFont boldSystemFontOfSize:dotFontSize];

//Change the font for our dates:
font = [UIFont fontWithName"HelveticaNeue-Light" size:dateFontSize];
font2 = [UIFont fontWithName"HelveticaNeue-Light" size:dateFontSize];
UIColor *color = [UIColor grayColor];

if(firstOfPrev>0){
    [color set];
    for(int i = firstOfPrev;i<= lastOfPrev;i++){
        r = [self rectForCellAtIndex:index];
        if ([marks count] > 0)
            [self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] boolValue] font:font font2:font2];
        else
            [self drawTileInRect:r day:i mark:NO font:font font2:font2];
        index++;
    }
}

//Set the color for all dates in the current month that are not today
color = [UIColor colorWithRed:59/255. green:73/255. blue:88/255. alpha:1];


[color set];
for(int i=1; i <= daysInMonth; i++){

    r = [self rectForCellAtIndex:index];
    if(today == i) [[UIColor whiteColor] set];

    if ([marks count] > 0) 
        [self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] boolValue] font:font font2:font2];
    else
        [self drawTileInRect:r day:i mark:NO font:font font2:font2];
    if(today == i) [color set];
    index++;
}

[[UIColor grayColor] set];
int i = 1;
while(index % 7 != 0){
    r = [self rectForCellAtIndex:index] ;
    if ([marks count] > 0) 
        [self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] boolValue] font:font font2:font2];
    else
        [self drawTileInRect:r day:i mark:NO font:font font2:font2];
    i++;
    index++;
}

}

问题是现在瓷砖(CGRects)是黑色的;或者它们后面的任何 View 都是黑色的,坦率地说,我有点迷失在 Tapku 的代码中。有谁知道为什么瓷砖是黑色的?或者我应该在 Tapku 代码中的哪个位置查找?我对核心图形不是很熟悉,所以也许我缺少一些基本/明显的东西。

注意:我还尝试更改 TKCalendarMonthView 的 tileBox(它是一个似乎包含日历图 block 的 UIScrollView)的颜色,虽然它确实改变了颜色,但并没有影响图 block 的背景颜色。

提前致谢!如果有任何不清楚的地方,请告诉我。



Best Answer-推荐答案


您可以按照以下步骤透明日历图 block

第一步

在 TKCalendarMonthView.m 中注释代码

+ (void) initialize{
    if (self == [TKCalendarMonthTiles class]){
        //tileImage = [UIImage imageWithContentsOfFile:TKBUNDLE(@"calendar/Month Calendar Date Tile.png")];
    } 
}

第二步

更改 TKCalendarMonthView.m 中的代码

添加代码行[self.currentTile setBackgroundColor:[UIColor clearColor]];

行前[self.tileBox addSubview:self.currentTile];

在方法 - (void) _setupCurrentTileViewNSDate*)date

所以你的代码看起来像

- (void) _setupCurrentTileViewNSDate*)date{

    ....

    [self.currentTile setBackgroundColor:[UIColor clearColor]];
    [self.tileBox addSubview:self.currentTile];

    ....

}

关于iphone - 使用 Tapku Calendar 创建透明日历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18689626/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap