English 中文(简体)
如何在部分控制中增加不同部分的不同看法?
原标题:How to add the different views for different segments in the segment control?
  • 时间:2011-08-24 06:11:35
  •  标签:
  • iphone

Iam开发了一个申请。 即使用5个部分控制部分。 每个部分都有不同的观点。 因此,当我们点击任何部分时,同样的看法将出现在部分控制之下。 与所有各部分一样,同样也发表了不同的看法。 请告诉我如何做到这一点。

问题回答

页: 1

IBOutlet UIView *view1,*view2,*view3,*view4,*view5; / una t forgot tolink in xib

- (国际行动)segValueChanged:UISegmentedControl*sender;

in .m file

- (国际行动)segValueChanged:UISegmentedControl*sender{

view1.hidden = TRUE;

view2.hidden = TRUE;

2. 意见3.hidden = TRUE;

view4.hidden = TRUE;

第5.hidden = TRUE;

switch (sender.selectedSegmentIndex) {

    case 0:
        view1.hidden = FALSE;
        break;
    case 1:
        view2.hidden = FALSE;
        break;
    case 2:
        view3.hidden = FALSE;
        break;
    case 3:
        view4.hidden = FALSE;
        break;
    case 4:
        view5.hidden = FALSE;
        break;
}

}





相关问题
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风格的解决办法,只是一个简单的袖珍流程......

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

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

热门标签