随机facebook个人资料ID生成器

时间:2011-09-08 20:26:04

标签: xcode facebook uiimageview

正确我有一个程序,当触摸按钮时,显示个人资料facebook个人资料图片,如图所示使用图形api。在网址中: http://graph.facebook.com/517418990/picture?type=large 可以更改数字以显示不同的个人资料图片(某些数字不起作用但这是一个不同的问题。如何在xcode中首先生成一个随机数(我认为它必须具有某种结构而不仅仅是一个随机的9位数字)其次,如何按下每个按钮加载一个新的随机数。例如,按钮=显示随机数的配置文件,按2 =显示新随机数等的配置文件等。下面的一些代码并不完全相关因为我还有一个数组,其中包含一些要经过的图像。提前致谢!

@interface FacebookPicturesViewController:UIViewController {

IBOutlet UIImageView *imageView;
NSInteger imageCount;
NSArray *imageArray;
NSString *profileLink;

} - (IBAction)nextImagePush; @end

@implementation FacebookPicturesViewController

  • (IBAction)nextImagePush {

    UIImage * img = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@“http://graph.facebook.com/517418990/picture?type=large”]]]; [imageView setImage:img];

    if(imageCount> = [imageArray count]){     imageCount = 0; } }

  • (void)viewDidLoad { imageArray = [[NSArray alloc] initWithObjects:@“image1”,@“image2”,nil]; imageCount = 0; }

0 个答案:

没有答案