iOS-StyledPageControl icon indicating copy to clipboard operation
iOS-StyledPageControl copied to clipboard

drawInRect deprecated in ios7

Open ilant opened this issue 11 years ago • 1 comments

ilant avatar Dec 11 '14 13:12 ilant

Here is my fix, not tested because we don't use pageNumber.

            NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle defaultParagraphStyle] mutableCopy];
            paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;
            paragraphStyle.alignment = NSTextAlignmentCenter;
            [pageNumber drawInRect:CGRectMake(x,(self.frame.size.height-_currentPageDiameter)/2-1,_currentPageDiameter,_currentPageDiameter) withAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:_currentPageDiameter-2], NSParagraphStyleAttributeName:paragraphStyle}];

hautelook-jimmy avatar Dec 12 '14 22:12 hautelook-jimmy