English 中文(简体)
取决于 列表文件中的设置的 Pin 图像
原标题:Pin image depending on the settings in the plist file

我有一张挂牌,上面写了很多关于这个建筑的要点:

Category1
-item0
 -name
 -coordinates
-item1
 -name
 -coordinates
-item2
 -name
 -coordinates

Category2
-item0
 -name
 -coordinates
-item1
 -name
 -coordinates
-item2
 -name
 -coordinates

现在我用这个显示插图:

pinView.image = [UIImage imageNamed:@"pin1.png"];

< strong> 如何显示不同类别“ 分类1, 类别2 ” 的不同别针图像? 非常感谢!

最佳回答

您可以将图像名称添加到列表中

Category1
-imageName
-item0
-name
-coordinates
-item1

我假设你把列表作为字典加载, 然后你就可以用

NSString *catName = @"Catergory1";
NSDictionary *dict = ...
pinView.image = [UIImage imageNamed:[[dict objectForKey:catName] valueForKey:@"imageName"]];
问题回答

暂无回答




相关问题
How to change out-of-focus text selection color in Xcode?

Okay, I ll bite. I ve got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible. When I am doing a project search and iterating through the results, ...

Iphone NSTimer Issue

Hi I am new to objective c. I am trying to make an app for iphone. I have a button on my view, and the click on which the function playSound is called. This is working properly. It does plays the ...

Include a .txt file in a .h in C++?

I have a number of places where I need to re-use some template code. Many classes need these items In a .h could I do something like: #include <xxx.txt> and place all of this code in the ....

Iterating over string/strlen with umlauted characters

This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters in a string. I do ...

Xcode open two editor windows with same file

Is it possible to open the same file in two separate windows in Xcode. I can open a file in one window and the same file in the main Xcode editor window, but I wanted two separate fulltime editor ...

Forcing code signing refresh in Xcode

In our environment, we share resources across multiple projects and platforms. When building for iPhone, only a subset of those resources are needed. Since that subset is still considerable, we have ...

热门标签