Skip to content

Commit

Permalink
Merge pull request #3 from andrewmostello/master
Browse files Browse the repository at this point in the history
Update to iOS 6.1 by changing deprecated constant.
  • Loading branch information
voidparadox committed Mar 11, 2013
2 parents b6c7e10 + ae63524 commit 4fa4bdb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Calendar.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Calendar_Prefix.pch;
INFOPLIST_FILE = "Calendar-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
PRODUCT_NAME = Calendar;
};
name = Debug;
Expand All @@ -267,6 +268,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = Calendar_Prefix.pch;
INFOPLIST_FILE = "Calendar-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 6.1;
PRODUCT_NAME = Calendar;
VALIDATE_PRODUCT = YES;
};
Expand Down
4 changes: 2 additions & 2 deletions Classes/Calendar/CalendarMonth.m
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ - (id)initWithFrame:(CGRect)frame logic:(CalendarLogic *)aLogic {

UILabel *aLabel = [[[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 40)] autorelease];
aLabel.backgroundColor = [UIColor clearColor];
aLabel.textAlignment = UITextAlignmentCenter;
aLabel.textAlignment = NSTextAlignmentCenter;
aLabel.font = [UIFont boldSystemFontOfSize:20];
aLabel.textColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"CalendarTitleColor.png"]];
aLabel.shadowColor = [UIColor whiteColor];
Expand Down Expand Up @@ -115,7 +115,7 @@ - (id)initWithFrame:(CGRect)frame logic:(CalendarLogic *)aLogic {

aLabel = [[[UILabel alloc] initWithFrame:aFrame] autorelease];
aLabel.backgroundColor = [UIColor clearColor];
aLabel.textAlignment = UITextAlignmentCenter;
aLabel.textAlignment = NSTextAlignmentCenter;
aLabel.text = symbol;
aLabel.textColor = [UIColor darkGrayColor];
aLabel.font = [UIFont systemFontOfSize:12];
Expand Down

0 comments on commit 4fa4bdb

Please sign in to comment.