有人可以看一看,看看我在这里缺少什么.谢谢!
CFIndex theNumberOfSettings = 3;CTParagraphStyleSetting theSettings[3] ={ {kCTParagraphStyleSpecifIErAlignment,sizeof(CTTextAlignment),&alignment},{kCTParagraphStyleSpecifIErlinespacing,sizeof(linespacing),&linespacing},{kCTParagraphStyleSpecifIErHeadindent,sizeof(headindent),&headindent}};CTParagraphStyleRef theParagraphref = CTParagraphStyleCreate(theSettings,theNumberOfSettings);CFAttributedStringSetAttribute(attrString,CFRangeMake(0,CFAttributedStringGetLength(attrString)-1),kCTParagraphStyleAttributename,theParagraphref);CFRelease(theParagraphref);free(theSettings);解决方法 您没有释放未在堆上分配的内存. 总结
以上是内存溢出为你收集整理的iphone – 如何在附加的C阵列中正确释放内存?全部内容,希望文章能够帮你解决iphone – 如何在附加的C阵列中正确释放内存?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)