Reputation: 2218
I'm using 4.2 sdk version.
Is there any control for a calendar view similar to the ipads calendar app? im using Kal on the iphone, but as it seems it is not available as ipad version. Is there anything for the ipad yet?
If use Kal it is not equivalent to ipad. See Sample image below
Thanks in Advance...
Upvotes: 0
Views: 1301
Reputation: 2218
I did it. I simply modified some codes manually, I used Kal project. Finally i got the correct solution.
See my Calendar image in iPad now
Upvotes: 5
Reputation: 1403
I think you can use the same for iPad too.But you will have to set the frame of KalView again for iPad device if detected.So you will have two different frames for iPhone and iPad.
One thing more you have a method in your KalView class.Go through it you will see a method named :
- (id)initWithFrame:(CGRect)frame delegate:(id<KalViewDelegate>)theDelegate logic: (KalLogic *)theLogic
{
//change the size for content view
}
Upvotes: 0