Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iOS 7 design #91

Closed
pilot34 opened this issue Aug 1, 2013 · 9 comments
Closed

iOS 7 design #91

pilot34 opened this issue Aug 1, 2013 · 9 comments

Comments

@pilot34
Copy link

pilot34 commented Aug 1, 2013

Hi! Have you got plans to redesign your lib for iOS 7 like calendar?

@klazuka
Copy link
Owner

klazuka commented Aug 4, 2013

Nope, sorry. Kal is no longer being maintained.
-keith

On Thu, Aug 1, 2013 at 7:02 AM, pilot34 notifications@github.com wrote:

Hi! Have you got plans to redesign your lib for iOS 7 like calendar?


Reply to this email directly or view it on GitHubhttps://github.com//issues/91
.

@johndpope
Copy link

Hi Keith,

Have you considered a bounty? Why not raise 5 grand? 10 grand?
It could help put the kids through college. You've got 1100 people who have starred this project.
If they all throw in $10 dollars......

They probably made a squillion re-packaging kal into their products.

https://www.bountysource.com/
https://www.bountysource.com/fundraisers/445-ui7kit-1-0

If they don't chip in - you don't need to do any work.

Some one /company may bank roll the project for bragging rights.

Other idea is to add the key people as contributors to the root project.
The project definitely needs upgrading to arc to help memory leaks.

JP

@JulesMoorhouse
Copy link

Hmmm, just discovered that this control needs some iOS7 improvements.

Has anyone moved to another control with minimum effort ?

@wizage
Copy link

wizage commented Oct 30, 2013

float systemVersion = [[[UIDevice currentDevice] systemVersion] floatValue];
if (systemVersion >= 7.0)
{
self.navigationController.navigationBar.translucent=NO;
}

fixes the issue where the title hides the month...
this is put into the -(void) loadview in KalViewController.m

I am working on fix it to work on ios 7 I am also looking into upgrading the graphics to match ios 7 but that requires a lot of photoshop but I don't know if I can get the fancy scroll to work... Updated graphics

@ignus001
Copy link

ignus001 commented Nov 6, 2013

@wizage you are now my favoritest person in the world! Thanks bro

@ignus001
Copy link

ignus001 commented Nov 7, 2013

You might also want to change the size of the tableview below the calendar itself (I sure did). This should do the trick:

on KalViewController's -(void) loadview, do this

int width = [[UIScreen mainScreen] applicationFrame].size.width;
int height;

if(([[UIScreen mainScreen] bounds].size.height == 568)){
    height = [[UIScreen mainScreen] applicationFrame].size.height-  210;
}else{
    height = [[UIScreen mainScreen] applicationFrame].size.height-  123;
}

KalView *kalView = [[KalView alloc] initWithFrame:CGRectMake(0, 0, width, height) delegate:self logic:logic];

@phaibin
Copy link

phaibin commented Dec 31, 2013

My fork made some changes for IOS7, and add range select.
https://github.com/phaibin/Kal

@maulikpat
Copy link

@phaibin : There is no issues open or closed in your code !!! Isn't it strange !

@pilot34
Copy link
Author

pilot34 commented Mar 16, 2018

overdue :)

@pilot34 pilot34 closed this as completed Mar 16, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants