我知道如何使用TTImageView,但现在我在项目中有这个要求,我们需要在服务器上显示受用户名密码保护的图像。我无法弄清楚如何在TTImageView上设置用户名密码。这是我的代码 -
TTImageView *ttItemImage = [[TTImageView alloc] initWithFrame:CGRectMake(x, y, 40, 40)];
ttItemImage.urlPath = imageURL;
[ttItemImage setBackgroundColor:[UIColor clearColor]];
ttItemImage.style= [TTShapeStyle styleWithShape:[TTRectangleShape
shape] next:[TTContentStyle styleWithNext:nil]];
ttItemImage.userInteractionEnabled = NO;
ttItemImage.contentMode = UIViewContentModeScaleAspectFit;
有任何想法是否可行,以及如何做到这一点?
答案 0 :(得分:1)
如果是我这样做,我只需创建一个TTImageView的子类,并通过对服务器的自定义调用覆盖重载方法。这样您就可以添加用户名和密码以及您希望使用的任何其他标题/方法。