-2
有什麼方法可以獲取圖像視圖上存在的圖像的名稱,該圖像位於屏幕上。請告訴我如何做到這一點。我已經搜索了很多,但還沒有發現任何有用的東西。請幫忙。獲取圖像視圖上的圖像名稱
有什麼方法可以獲取圖像視圖上存在的圖像的名稱,該圖像位於屏幕上。請告訴我如何做到這一點。我已經搜索了很多,但還沒有發現任何有用的東西。請幫忙。獲取圖像視圖上的圖像名稱
您可以繼承UIImageView並添加屬性名稱或標識符。
@interface MyImageView : UIImageView{
NSString *name;
}
@property (retain) NSString *name;
-(id)initWithImage:(UIImage *)image andName:(NSString *)name;
@end;
@implementation MyImageView
@synthesize name;
-(id)initWithImage:(UIImage *)image andName:(NSString *)name
{
if(self = [super initWithImage:image]){
self.name = name;
}
return self;
}
-(void)dealloc
{
self.name = nil;
[super dealloc;]
}
您應該使用視圖的標籤屬性來區分不同的imageViews。
但我想獲得hte名稱,使用標籤我無法獲得taht – Christina
,但隨着您打車的標籤記錄您在別處保存的名稱。 – vikingosegundo
但我沒有使用標籤獲取名稱 – Christina