I'm not sure about the caption itself, but here is a way to post the image along with a message to the user's wall. The message text can have imbedded links in it with no problem.
Facebook* fb = [(AppDelegate *) [[UIApplication sharedApplication] delegate] facebook];
NSData* imageData = UIImageJPEGRepresentation([UIImage imageNamed: @"A.jpg"], 90);
NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys: [fb accessToken],
@"access_token",
@"some message here...with a link http://www.google.com",
@"message",
imageData,
@"source",
nil];
[fb requestWithGraphPath: @"me/photos"
andParams: params
andHttpMethod: @"POST"
andDelegate: self];