-
Notifications
You must be signed in to change notification settings - Fork 653
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
Calendar Month Grid: Added support for multiple dots in the calendar #207
Open
teameh
wants to merge
1
commit into
devinross:master
Choose a base branch
from
teameh:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,6 +81,7 @@ @implementation TKCalendarMonthTiles | |
|
||
#define dotFontSize 18.0 | ||
#define dateFontSize 22.0 | ||
#define numberOfMaxDots 6 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe this could become a property once.. |
||
|
||
#pragma mark Accessibility Container methods | ||
- (BOOL) isAccessibilityElement{ | ||
|
@@ -277,7 +278,7 @@ - (CGRect) rectForCellAtIndex:(int)index{ | |
|
||
return CGRectMake(col*46, row*44+6, 47, 45); | ||
} | ||
- (void) drawTileInRect:(CGRect)r day:(int)day mark:(BOOL)mark font:(UIFont*)f1 font2:(UIFont*)f2{ | ||
- (void) drawTileInRect:(CGRect)r day:(int)day mark:(int)mark font:(UIFont*)f1 font2:(UIFont*)f2{ | ||
|
||
NSString *str = [NSString stringWithFormat:@"%d",day]; | ||
|
||
|
@@ -292,7 +293,7 @@ - (void) drawTileInRect:(CGRect)r day:(int)day mark:(BOOL)mark font:(UIFont*)f1 | |
r.size.height = 10; | ||
r.origin.y += 18; | ||
|
||
[@"•" drawInRect: r | ||
[[@"••••••" substringToIndex:MIN(MAX(mark, 0), numberOfMaxDots)] drawInRect: r | ||
withFont: f2 | ||
lineBreakMode: UILineBreakModeWordWrap | ||
alignment: UITextAlignmentCenter]; | ||
|
@@ -327,9 +328,9 @@ - (void) drawRect:(CGRect)rect { | |
for(int i = firstOfPrev;i<= lastOfPrev;i++){ | ||
r = [self rectForCellAtIndex:index]; | ||
if ([marks count] > 0) | ||
[self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] boolValue] font:font font2:font2]; | ||
[self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] intValue] font:font font2:font2]; | ||
else | ||
[self drawTileInRect:r day:i mark:NO font:font font2:font2]; | ||
[self drawTileInRect:r day:i mark:0 font:font font2:font2]; | ||
index++; | ||
} | ||
} | ||
|
@@ -343,9 +344,9 @@ - (void) drawRect:(CGRect)rect { | |
if(today == i) [[UIColor whiteColor] set]; | ||
|
||
if ([marks count] > 0) | ||
[self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] boolValue] font:font font2:font2]; | ||
[self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] intValue] font:font font2:font2]; | ||
else | ||
[self drawTileInRect:r day:i mark:NO font:font font2:font2]; | ||
[self drawTileInRect:r day:i mark:0 font:font font2:font2]; | ||
if(today == i) [color set]; | ||
index++; | ||
} | ||
|
@@ -355,9 +356,9 @@ - (void) drawRect:(CGRect)rect { | |
while(index % 7 != 0){ | ||
r = [self rectForCellAtIndex:index] ; | ||
if ([marks count] > 0) | ||
[self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] boolValue] font:font font2:font2]; | ||
[self drawTileInRect:r day:i mark:[[marks objectAtIndex:index] intValue] font:font font2:font2]; | ||
else | ||
[self drawTileInRect:r day:i mark:NO font:font font2:font2]; | ||
[self drawTileInRect:r day:i mark:0 font:font font2:font2]; | ||
i++; | ||
index++; | ||
} | ||
|
@@ -398,18 +399,7 @@ - (void) selectDay:(int)day{ | |
[self addSubview:self.selectedImageView]; | ||
self.currentDay.text = [NSString stringWithFormat:@"%d",day]; | ||
|
||
if ([marks count] > 0) { | ||
|
||
if([[marks objectAtIndex: row * 7 + column ] boolValue]){ | ||
[self.selectedImageView addSubview:self.dot]; | ||
}else{ | ||
[self.dot removeFromSuperview]; | ||
} | ||
|
||
|
||
}else{ | ||
[self.dot removeFromSuperview]; | ||
} | ||
self.dot.text = [@"••••••" substringToIndex:MIN(MAX([[marks objectAtIndex:(row*7+column)] intValue], 0), numberOfMaxDots)]; | ||
|
||
if(column < 0){ | ||
column = 6; | ||
|
@@ -494,14 +484,7 @@ - (void) reactToTouch:(UITouch*)touch down:(BOOL)down{ | |
[self addSubview:self.selectedImageView]; | ||
self.currentDay.text = [NSString stringWithFormat:@"%d",day]; | ||
|
||
if ([marks count] > 0) { | ||
if([[marks objectAtIndex: row * 7 + column] boolValue]) | ||
[self.selectedImageView addSubview:self.dot]; | ||
else | ||
[self.dot removeFromSuperview]; | ||
}else{ | ||
[self.dot removeFromSuperview]; | ||
} | ||
self.dot.text = [@"••••••" substringToIndex:MIN(MAX([[marks objectAtIndex:(row*7+column)] intValue], 0), numberOfMaxDots)]; | ||
|
||
|
||
|
||
|
@@ -559,7 +542,6 @@ - (UILabel *) dot{ | |
r.origin.y += 29; | ||
r.size.height -= 31; | ||
_dot = [[UILabel alloc] initWithFrame:r]; | ||
_dot.text = @"•"; | ||
_dot.textColor = [UIColor whiteColor]; | ||
_dot.backgroundColor = [UIColor clearColor]; | ||
_dot.font = [UIFont boldSystemFontOfSize:dotFontSize]; | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
demo seems to crash without this line