gpt4 book ai didi

iphone - 在 Iphone 的自定义选项卡面板中集成 Kal 日历

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

我正在开发一个应用程序,它有以下场景。用户登录应用程序后,将出现一个自定义的选项卡式面板。我想将 Kal 日历显示到我的第一个选项卡项中。但是这样做失败了。请任何人都可以为我提供 XCODE 4.2 的精确步骤,将不胜感激..

提前致谢..

最佳答案

TapkuLibrary 添加到您的项目(TapkuLibrary.bundle 和其他头文件)

#import "TKCalendarMonthView.h"

包括这些代表:TKCalendarMonthViewDelegate,TKCalendarMonthViewDataSource(在.h文件中)

在接口(interface)声明文件(即.h文件)中声明TKCalendarMonthView *calendar;

@property (nonatomic, retain) TKCalendarMonthView *calendar;(在 .h 文件中)

@synthesize calendar;(在.m文件中)

然后在 viewDidLoad

calendar = [[TKCalendarMonthView alloc] init];
calendar.delegate = self;
calendar.dataSource = self;
[self.view addSubview:calendar];
[calendar reload];

- (void)calendarMonthView:(TKCalendarMonthView *)monthView didSelectDate:(NSDate *)d {
NSLog(@"calendarMonthView didSelectDate");
}

- (void)calendarMonthView:(TKCalendarMonthView *)monthView monthDidChange:(NSDate *)d {
// NSLog(@"calendarMonthView monthDidChange");
// NSLog(@"d is %@",d);
}

关于iphone - 在 Iphone 的自定义选项卡面板中集成 Kal 日历,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11839997/

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