xcode中如何修复图片的放置位置

发布于 2024-11-04 06:41:50 字数 588 浏览 0 评论 0原文

我正在我的应用程序中使用选项卡栏、导航栏和分段栏。

我必须显示来自 HTTP 的图片,如下所示:

- (void)viewDidLoad {
    [super viewDidLoad];
    // build the URL, perform the request and show the picture
    NSURL *url = [NSURL URLWithString: @"http://api.clementhallet.be/15avril.png"];

    //UIImage
    [[UIImageView alloc] initWithImage:image];
    image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]]; 
    image.frame = CGRectMake(0, 0, 100, 100);
    [self.view addSubview:[[UIImageView alloc] initWithImage:image]];
}

它正在运行,但图片不在我想要的位置 [完全][1]。

谢谢你帮助我!

I'm playing with the tabbar, navigationBar and SegmentedBar in my application.

I have to show an picture from a HTTP like this :

- (void)viewDidLoad {
    [super viewDidLoad];
    // build the URL, perform the request and show the picture
    NSURL *url = [NSURL URLWithString: @"http://api.clementhallet.be/15avril.png"];

    //UIImage
    [[UIImageView alloc] initWithImage:image];
    image = [UIImage imageWithData: [NSData dataWithContentsOfURL:url]]; 
    image.frame = CGRectMake(0, 0, 100, 100);
    [self.view addSubview:[[UIImageView alloc] initWithImage:image]];
}

It's running but the picture isn't where I want [exactly][1].

Thanks to help me!

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

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

发布评论

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

评论(1

撩动你心 2024-11-11 06:41:50

这应该是正确的顺序:

UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:url]]; 

UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; 

imageView.frame = CGRectMake(0, 0, 100, 100); 

[self.view addSubview:imageView];

您必须设置图像视图的框架以进行定位。如果没有在界面生成器中完成,请这样做:

image.frame = CGRectMake(x, y, width, height);

This should be the right order:

UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:url]]; 

UIImageView *imageView = [[UIImageView alloc] initWithImage:image]; 

imageView.frame = CGRectMake(0, 0, 100, 100); 

[self.view addSubview:imageView];

You've got to set the frame of your imageview for positioning. If not in interface builder done, do it like this:

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