I don't see anywhere that you are setting the contentSize property for the scrollveiw?
On a side note: there are several memory leaks here
Code:
UIImage *image = [UIImage imageWithData:[[NSData alloc] initWithContentsOfURL:[[NSURL alloc] initWithString:[buyukResimLink objectAtIndex:i]]]];
Also, depending on what buyukReseimLink objectAtIndex:i is, if it's a remote URL, then there is gonna be a huge delay in each of these images downloading synchronously like this. Depending on their size, it could take a while before they are downloaded and anything shows up on your screen.