Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 XCode 项目中添加一个图像 (joke.png)。它应该具有 0,190,320,60 的 GCRectMake 设置。我如何将它添加到 .m 文件代码中?假设我已经将它添加到 UIButton 列表下的 .h 文件中。它只是为了展示 - 没有交互。谢谢!
您需要做的是将 UIImageView 添加到您的视图中。
在您的 viewdidload 中创建该 imageview 并将其添加到视图中。
例如
UIImageView* imageView = [[UIImageView alloc] initWithImage:[Uiiimage: imagenamed:@"joke.png"]; imageView.frame = cgrectmake( 0,190,320,60); [self.view addSubview:image view];