2016-12-15 37 views
0

我想在facebook上張貼viewcontroller的截圖作爲url.How這可以做到。我知道如何發佈文本,但我如何以編程方式截取viewcontroller和把它作爲URL在Facebook上發佈?請幫助目標c中的一些代碼。在facebook上張貼viewcontroller的截圖爲url

+0

您需要應用'UIGraphicsBeginImageContextWithOptions'把你的VC的圖像,然後像對服務器上傳,最後與服務器的圖像的URL,它發佈到FB。 – PiyushRathi

+0

請用代碼解釋... – TestShroff

+0

首先讓我知道你有服務器上傳圖片嗎? – PiyushRathi

回答

1

目標C你可以做圖像。

UIGraphicsBeginImageContextWithOptions(self.view.bounds.size,false, 0.0); 
[self.ImageBgView.layer renderInContext:UIGraphicsGetCurrentContext()]; 
UIImage * image = UIGraphicsGetImageFromCurrentImageContext(); 
UIGraphicsEndImageContext(); 

希望這有助於