UIFont を NSDictonary 型のパラメーターに送信する互換性のないポインター型を取得したため、シグナル SIGABRT が発生し、エラーが発生したコードが何を意味するのかわかりません...
- (void)drawDayNumber {
if (self.selectionState == DSLCalendarDayViewNotSelected) {
[[UIColor colorWithWhite:66.0/255.0 alpha:1.0] set];
}
else {
[[UIColor whiteColor] set];
}
UIFont *textFont = [UIFont boldSystemFontOfSize:17.0];
CGSize textSize = [_labelText sizeWithAttributes:textFont];//Im getting it here.
CGRect textRect = CGRectMake(ceilf(CGRectGetMidX(self.bounds) - (textSize.width /2.0)), ceilf(CGRectGetMidY(self.bounds) - (textSize.height / 2.0)), textSize.width, textSize.height);
[_labelText drawInRect:textRect withAttributes:textFont];//And here.
}