English 中文(简体)
在变量中引用 UIView 的名称
原标题:Refer to UIView by its name in a variable

在我 UIViewcurrent 的后代中,我有一套四个“区块”。每个“区块”都是一个“区块” 的4个孩子:两个UIOView s,一个UIImageView 和一个UIUView 。所有这些都是在界面构建器中创建的,并且使用 IBOutlet ss连接到该类。

在我的班上,我有相应的成员:

IBOutlet UIView      *block1;
IBOutlet UILabel     *title1;
IBOutlet UILabel     *text1;
IBOutlet UIImageView *image1;
IBOutlet UIView      *separator1;

IBOutlet UIView      *block2;
IBOutlet UILabel     *title2;
IBOutlet UILabel     *text2;
IBOutlet UIImageView *image2;
IBOutlet UIView      *separator2;

IBOutlet UIView      *block3;
IBOutlet UILabel     *title3;
IBOutlet UILabel     *text3;
IBOutlet UIImageView *image3;
IBOutlet UIView      *separator3;

IBOutlet UIView      *block4;
IBOutlet UILabel     *title4;
IBOutlet UILabel     *text4;
IBOutlet UIImageView *image4;
IBOutlet UIView      *separator4;

我在动态地将数据设置为这些UIPI Views- 它总是在四组中, 所以每个区块的初始化是相同的。 理想的情况是, 我想做这样的事情:

Block *block;
UIImage *img;

for(int i=1; i<=4; i++)
{
    block = [response blockNumbered:i];

    [<"title"+i> setText:[block getTitle]];
    [<"text"+i> setText:[block getText]];
    img = [block getImage];
    if(img)
    {
        [<"image"+i> setImage:img];
    }

    [<"separator"+i> setHidden:![block needSeparator]];
}

(注意这是简化的代码, 在现实生活中, 这个首字母首字母首字母首字母首字母首, 更接近于四个区块中每个区块的200条线代码, 但完全相同的逻辑。) 现在, 如果我只能用某种方式来指一个在字符串变量中带有名称的视图!!!

是否有办法实现这一目标?

P.S.我知道我可以在代码中创建所有这些观点,作为一系列相应的观点,然而,我也必须同时在代码中进行布局----我宁愿在 IB 中这样做。 或者,有没有办法将一个 UIGO见 s 的阵列宣布为 IBOutlet 并连接 IB 中数组中的每个元素?

最佳回答

您可以使用 < a href=" "https:// developmenter.apple.com/library/ios/document/Cocoa/Reference/Foundation/Protocols/NSKeyValueCoding_Protocol/Reference/Reference.html#/ /apple_ref/doc/uid/20000471-fileAttriationtes_ClassMethod_NSPathUplities" rel="nofollow"_codecode>valueForKey: : :

[[self valueForKey:[NSString stringWithFormat:@"title%d", i]] setText:[block getTitle]];
问题回答

您应该稍微修改逻辑, 使其依赖于标签。 您可以标记所有子视图, 如 < code> subview1.tag = 1001; subview2.tag = 1002; 稍后您可以在标签值上复制所有子视图 。





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。