2

我是一个初学者,试图显示图像,位图和 tiff 已经尝试过,在图像井或按钮中,但没有成功。代码如下。它运行但没有显示任何内容。我尝试了两种定义字符串的方法以及使用 self.well 或 _well 但没有任何效果。如果我尝试使用 [well1 setImage:testImage]; 如其他示例所示,我收到错误“使用未声明的标识符。

//代码是

  NSString *inFilePath = @"/Documents/Track1bmp.bmp";
  NSImage *testImage = [[NSImage alloc] initWithContentsOfFile:inFilePath];
   //well1 is your outlet
  [self.well1 setImage:testImage];
  [self.butt1 setImage:testImage];
  [_well2 setImage:testImage];

// Also trying this

  NSString* imageName = [[NSBundle mainBundle]
                       pathForResource:@"/Applications/Sudoku4/Pinktiff" ofType:@"TIFF"];
  NSImage* tempImage = [[NSImage alloc] initWithContentsOfFile:imageName];
  [self.well1 setImage:tempImage];
4

0 回答 0