uitableviewcellで同じ画像サイズのサイズを変更する必要があります。私は別のビューを使用せず、同じページを使用しています。私はすべてを置いて走った。しかし、私はそれを行う方法を正しく配置することができませんでした。前もって感謝します。 は、ここでは、コードuitableviewセルイメージのサイズを変更するには?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
int count = 0;
if(self.editing && indexPath.row != 0)
count = 1;
if(indexPath.row == ([imarry count]) && self.editing)
{
cell.textLabel.text = @"ADD";
cell.image= [UIImage imageNamed:@""];
return cell;
}
cell.textLabel.text = [arry objectAtIndex:indexPath.row];
cell.image=[imarry objectAtIndex:(indexPath.row)];
return cell;
}
- (void)imagePickerController:(UIImagePickerController *)UIPicker didFinishPickingImage:(UIImage *)info editingInfo:(NSDictionary *)dictionary
{
[UIPicker dismissModalViewControllerAnimated:NO];
[imarry insertObject:info atIndex:[imarry count]];
[Table reloadData];
NSLog(@"Uploaded image");
}
イメージ画像は、画像のプロパティはiOSの3.0では推奨されません
[SO post](http://stackoverflow.com/questions/1055495/uitableviewcells-imageview-fit-to-40x40) この[SO post](http://stackoverflow.com/)質問/ 2788028/how-do-i-make-uitableviewcells-imageview-a-fixed-size-even-the-image-is-sm) – user523234