We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2470e9 commit f72f543Copy full SHA for f72f543
ch26/CurvyText/CurvyText/CurvyTextView.m
@@ -236,13 +236,11 @@ - (void)drawText {
236
[self prepareContext:context forRun:run];
237
238
// Fetch the glyphs as a CGGlyph* array
239
- __attribute__((objc_precise_lifetime))
240
NSMutableData *glyphsData = [self glyphDataForRun:run];
241
CGGlyph *glyphs = [glyphsData mutableBytes];
242
243
// Fetch the advances as a CGSize* array. An advance is the
244
// distance from one glyph to another.
245
246
NSMutableData *advancesData = [self advanceDataForRun:run];
247
CGSize *advances = [advancesData mutableBytes];
248
0 commit comments