简体   繁体   English

无法在应用程序中显示Kal UI

[英]Not able to display Kal UI in application

I am having trouble displaying the Kal calendar UI in my application. 我在应用程序中显示Kal calendar UI时遇到问题。 Actually the calendar is being displayed but everything is very dark. 实际上,日历正在显示,但是一切都很暗。 I have a tabbed bar application and i am not using storyboards. 我有一个选项卡式的栏应用程序,我没有使用情节提要。 I have upgraded to Xcode 5. 我已经升级到Xcode 5。

Here's what I should get: 这是我应该得到的:

在此处输入图片说明

And Here's what i am getting: 这就是我得到的:

在此处输入图片说明

Here's what i have done so far: I have copied all the classes in the Kal api into my code. 到目前为止,这是我所做的事情:我已经将Kal api中的所有类复制到了我的代码中。 when the fourth tab of my UITabBarController is pressed, the calendar needs to show up. 当按下我的UITabBarController的第四个选项卡时,需要显示日历。 The UIViewController associated with the 4th tab is MonthlyTabBarItemViewController. 与第四个选项卡关联的UIViewControllerMonthlyTabBarItemViewController.

MonthlyTabBarItemViewController.h MonthlyTabBarItemViewController.h

#import "KalViewController.h"
@interface MonthlyTabBarItemViewController : UIViewController<KalDataSource>
@end

MonthlyTabBarItemViewController.m MonthlyTabBarItemViewController.m

- (void)viewDidLoad
{
    [super viewDidLoad];
    KalViewController *kal = [[KalViewController alloc] init];
    [self.view addSubview:kal.view];
}

These steps should at least show the calendar UI properly.. right?? 这些步骤至少应该正确显示日历UI。 Why am i getting everything dark? 为什么我一切都变黑了?

Someone please tell me what I am doing wrong. 有人告诉我我做错了。

It seems like the graphics aren't being found/used, as though you haven't included the Kal.bundle into your project? 似乎没有找到/使用这些图形,好像您没有在项目中包含Kal.bundle吗? Within the bundle is all of the graphics that Kal uses to display correctly in a view. 捆绑软件中包含Kal用于在视图中正确显示的所有图形。 If you include that to your project and link it up in the same way as the rest of the Kal project, it should find the graphics okay and display as you expect. 如果将其包含到您的项目中,并以与Kal项目其余部分相同的方式将其链接起来,则它应该会找到合适的图形并按预期显示。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM