获取图像视图上图像的名称

发布于 2024-11-17 08:54:30 字数 73 浏览 2 评论 0原文

有什么方法可以获取屏幕上图像视图上存在的图像的名称。请告诉我如何做到这一点。我已经搜索了很多,但仍然没有找到任何有用的东西。请帮忙。

Is there any way to get the name of the image which is present on the image view which is there on my screen. Please tell me ways to do this. I already searched it a lot but still have not found anything useful. Please help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

芸娘子的小脾气 2024-11-24 08:54:30

您可以子类化 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;]
}

You can subclass UIImageView and add a property name or identifier.

@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;]
}
五里雾 2024-11-24 08:54:30

您应该使用视图的 tag 属性来区分不同的 imageView。

You should use the tag property of the view to distinguish between different imageViews.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文