iPhone应用程序中每个页面上的图像

时间:2009-08-01 09:15:21

标签: iphone

如何将图像添加到iPhone应用程序中每个页面的顶部?

1 个答案:

答案 0 :(得分:1)

图像通常通过UIImageView添加。类似的东西:

UIView *newView = [[UIImageView alloc] initWithImage: [UIImage imageNamed: @"myimage.png"]];
[self.view addSubview: newView];

下载SDK。在示例文件夹中,搜索术语“UIImageView”。你会发现几百个你要问的例子。