對不起,但我不知道如何提出問題。這是我想要做的。我有一個包含的xml文件當我移動一個對象時,我需要增加1位數,因爲我創建了一個url
<Image1>pic1.jpg</Image1>
<Image2>pic2.jpg</Image2>
<Image3>pic3.jpg</Image3>
<ImageCount>3</ImageCount>
我正在創建一個URL來顯示圖片。當我點擊「下一步」查看下一張圖片時,我需要創建下一個網址。我知道這會是這樣的事情,但今天早上我無法把頭圍住它。
if (onImageCount <= totalImageCount) {
//here we are on the second image request. we need to create a string to pass the "nextimageurl". this string points to which "Image1,2,3," xml tag to pull up next
nextImageURL = [NSString stringWithFormat:@"http://www.pictureshostedhere.com/%@",selectedVehicle.Image[onImageCount]];
imageData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:nextImageURL]];
carImage = [[UIImageView alloc] initWithFrame:CGRectMake(46,8,228,171)];
carImage.image = [UIImage imageWithData:imageData];
[scrollView addSubview:carImage];
//[self.view sendSubviewToBack:carImage];
[carImage release];
任何幫助將是偉大的!
for循環,任何人? – sciritai 2011-04-09 17:53:29
我不認爲這將是一個for循環。我已經創建了該對象。現在我只需要查看該對象中的每個字符串,僅當用戶單擊「下一個圖像」時纔會顯示。 – Louie 2011-04-09 17:55:52
它看起來像你需要增加onImageCount。 UserClick-> delegateEvent->增加onImageCount->調用上述方法。 – sciritai 2011-04-09 18:00:40