1
海 我正在創建一個應用程序。我想發送用戶當前位置與地圖使用GPS和沒有GPS作爲短信。可能嗎? 如果有人知道,請幫助我。給一些示例教程或代碼。 謝謝當前位置與地圖
海 我正在創建一個應用程序。我想發送用戶當前位置與地圖使用GPS和沒有GPS作爲短信。可能嗎? 如果有人知道,請幫助我。給一些示例教程或代碼。 謝謝當前位置與地圖
你可以採取的MapView的屏幕快照通過下面的代碼,並通過link
- (UIImage *)captureView:(UIView *)view
{
CGRect screenRect = [[UIScreen mainScreen] bounds];
UIGraphicsBeginImageContext(screenRect.size);
CGContextRef ctx = UIGraphicsGetCurrentContext();
[[UIColor blackColor] set];
CGContextFillRect(ctx, screenRect);
[view.layer renderInContext:ctx];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return newImage;
}
發送多媒體短信