以下內容將被視爲在iOS 7中棄用: CGContextSelectFont, CGContextShowTextAtPoint。 我應該用什麼來代替?CGContextShowTextAtPoint已棄用 - 現在應該使用什麼?
15
A
回答
9
您可以使用[yourString drawAtPoint:aPoint withAttributes:dictOfAttributes];
文檔爲here。
或者您可以將UILabel
添加到您的視圖層次結構中。
2
//開始圖形上下文 UIGraphicsBeginImageContext(imageSize);
//get the context for coreGraphics
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSetTextDrawingMode(ctx, kCGTextFill);
[[UIColor blackColor] setFill];
[@"yourstring" drawAtPoint:CGPointMake(0, 0) withAttributes:@{NSFontAttributeName:[UIFont fontWithName:@"Helvetica" size:17]}];
//make image out of bitmap context
UIImage *outputImage = UIGraphicsGetImageFromCurrentImageContext();
相關問題
- 1. httpClient.getConnectionManager()已棄用 - 應該使用什麼?
- 2. Arguments.callee已棄用 - 應該使用什麼?
- 3. GKSession在ios7中已棄用,現在應該使用什麼?
- 4. PHP中的函數已棄用,現在應該使用什麼?
- 5. java.sql.Date已棄用我應該用什麼?
- 6. Modernizr.load已棄用,應使用什麼?
- 7. 我應該使用什麼來代替已棄用的Date.getHours()
- 8. RestDocumentation類已棄用,應該使用什麼?
- 9. 是否已棄用/取代FriendPickerFragment?應該使用什麼?
- 10. MethodInvokingTimerTaskFactoryBean已棄用,應該使用什麼類來代替?
- 11. 應該使用什麼類來代替已棄用的AmazonCloudFrontClient?
- 12. 已棄用FusedLocationProviderApi.KEY_LOCATION_CHANGED。現在做什麼?
- 13. requestAccessToAccountsWithType在ios6.1中已棄用,我應該用什麼來代替?
- 14. HttpClient.getParams()已棄用。我應該用什麼來代替?
- 15. getPosition已棄用我應該用什麼來代替?
- 16. CookieSyncManager現在已被棄用,我可以使用什麼呢?
- 17. XMLHttpRequest已棄用。代替使用什麼?
- 18. System.Web.Services.Protocols.SoapHeaderAttribute.Required已過時我現在應該使用什麼?
- 19. 爲什麼MapMaker.softKeys()已棄用?
- 20. 爲什麼ProviderSignInUtils.getConnection已棄用
- 21. 爲什麼buildSessionFactory()已棄用?
- 22. 集合可見性和狀態過濾器已棄用,應該使用什麼?
- 23. 我應該使用iOS7中的什麼來代替已棄用的GKLeaderboardViewController?
- 24. 現在該如何使用Facebook Chat API已被棄用?
- 25. 現在TabActivity已被棄用,我該如何使用片段?
- 26. Android加速度計:SensorManager.DATA_X已棄用 - 現在該怎麼辦?
- 27. jquery的live()已被棄用。我現在用什麼?
- 28. ProgressDialog現已棄用
- 29. HttpParams已棄用。我該怎麼辦?
- 30. NSObject finalize已棄用 - 我該怎麼做?
所有的iOS beta API更改都在NDA之下,不能在這裏討論。這是蘋果開發人員論壇的事情。 –