2013-04-27 3 views
0

GoodeveningНевозможно добавить UIButton в UIScrollView

Хотя я читал довольно много вопросов, связанных с о добавлении UIButton к UIScrollView он не работает для меня. Когда я использую UIImages вместо UIButtons, он работает как шарм. Что мне здесь не хватает? (Не против ИФ или петель, аль те правильны, дорожки изображений также)

for(int j = 0; j < [subcategorie count]; j++){ 

     NSArray *product = [subcategorie objectAtIndex:(j)]; 
     int posX = 0; 
     for(int k = 1; k <= [product count]; k++){ 

      if((i-1) == currentCategory){ 
       //NSString *fotoName = [NSString stringWithFormat:@"images/product/%@/%@_%i.png",self.categorieen[(i-1)] ,self.categorieen[(i-1)] , k]; 

       NSString *fotoName = [NSString stringWithFormat:@"%@_%i",self.categorieen[(i-1)] , k]; 

       NSString *currentCategory = [NSString stringWithFormat:@"images/product/%@/", self.categorieen[(i-1)]]; 
       NSString *path = [[NSBundle mainBundle] pathForResource:fotoName ofType:@"png" inDirectory:currentCategory]; 

       UIButton *fotoButton = [UIButton buttonWithType:UIButtonTypeCustom]; 
       [fotoButton setImage:[UIImage imageNamed:path] forState:UIControlStateNormal]; 
       fotoButton.frame = CGRectMake(posX, 252, 718, 520); 
       fotoButton.backgroundColor = [UIColor clearColor]; 

       self.scrollview.contentSize = CGSizeMake(posX, 252); 
       [self.scrollview setBounces:YES]; 
       [self.scrollview setPagingEnabled:YES]; 
       [self.scrollview addSubview:fotoButton]; 
       [self.scrollview bringSubviewToFront:fotoButton]; 
       [self.scrollview setUserInteractionEnabled:YES]; 

       self.scrollview.userInteractionEnabled = YES; 
       [self addSubview: self.scrollview]; 
       posX += 718; 

       NSLog(@"Fotolink = %@", fotoName); 
      } 

     } 
    } 

Приветствия

+1

в [fotoButton setImage: [UIImage imageNamed: path] forState: UIControlStateNormal]; Параметр UIImage imageNamed неверен, попробуйте добавить это [UIImage imageWithData: [NSData dataWithContentsOfFile: путь]; –

+0

Ты только что сделал мой день! Благодаря! –

ответ

1

[UIImage imageNamed:path] выглядит неправильно, попробовать [UIImage imageWithData:[NSData dataWithContentsOfFile:path]


UIButton *fotoButton = [UIButton buttonWithType:UIButtonTypeCustom]; 
[fotoButton setImage:[UIImage imageWithData:[NSData dataWithContentsOfFile:path] forState:UIControlStateNormal]; 
+0

Это была вина. Тилина Хевагама просто сказала то же самое. Спасибо, в любом случае! –

Смежные вопросы