gpt4 book ai didi

ios - 如何在没有 Stroybord/Xib 的情况下使用 JTCalendar

转载 作者:行者123 更新时间:2023-12-01 16:26:52 25 4
gpt4 key购买 nike

如果没有 JTCalendar 的 Storyboard/Xib 使用,我不知道如何使用。
通常任何 View 都可以在 super View 中添加 Ex: [self.view addSubview :SampleView1]
如何添加我的自定义 View 。

#import <UIKit/UIKit.h>
#import "JTCalendar/JTCalendar.h"
@interface GitCalendarViewController : UIViewController <JTCalendarDelegate>

@property (weak, nonatomic) IBOutlet JTCalendarMenuView *calendarMenuView;
@property (weak, nonatomic) IBOutlet JTHorizontalCalendarView *calendarContentView;

@property (strong, nonatomic) JTCalendarManager *calendarManager;




@implementation ViewController

- (void)viewDidLoad
{
[super viewDidLoad];

_calendarManager = [JTCalendarManager new];
_calendarManager.delegate = self;

[_calendarManager setMenuView:_calendarMenuView];
[_calendarManager setContentView:_calendarContentView];
[_calendarManager setDate:[NSDate date]];
}

我怎样才能添加那些我的 subview 。请帮我

最佳答案

[self.view addSubview:_calendarManager];
不工作?日历管理器是哪个类的子类?

关于ios - 如何在没有 Stroybord/Xib 的情况下使用 JTCalendar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34812351/

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