gpt4 book ai didi

iphone - 添加 Tapku 日历到应用程序

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:11:34 25 4
gpt4 key购买 nike

我正在尝试将 Tapku 日历添加到我的应用程序中。我正在使用 Storyboard,我添加了 Tapku 库,导入了必要的文件并添加了 TKCalendarMonthViewDelegate 方法。我正在将日历添加到名为 calendarView 的 UIView。当我运行该应用程序时,日历没有出现,只有里面没有任何内容的 View 。

-(void)viewDidLoad
{
[super viewDidLoad];
[self.navigationController setNavigationBarHidden:NO animated:YES];

self.navigationItem.hidesBackButton = YES;
calendar = [[TKCalendarMonthView alloc] init];
calendar.delegate = self;
calendar.dataSource = self;
calendar.frame = CGRectMake(0, 0, calendar.frame.size.width, calendar.frame.size.height);

// Ensure this is the last "addSubview" because the calendar must be the top most view layer
[self.view addSubview:calendar];
[calendar reload];

// Do any additional setup after loading the view.
}

谁能帮帮我?

最佳答案

尝试直接指定帧点,像这样

calendar.frame = CGRectMake(0, 0, 320,400);

关于iphone - 添加 Tapku 日历到应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14834678/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com