Guest User

Untitled

a guest
May 22nd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. for (int i = 0; i < [careerIds count]; i++) {
  2.  
  3.     NSString *titleString = [[titles objectAtIndex:i] stringValue];
  4.     if ([titleString isEqualToString:@""] || [titleString rangeOfString:@"Intresseanmälan"].location != NSNotFound) {
  5.         // Don't add the id
  6.     } else {
  7.         [ids addObject:[[careerIds objectAtIndex:i] stringValue]];
  8.     }
  9.  
  10. }
Add Comment
Please, Sign In to add comment