如何知道点击了 UISwitch 按钮
我有一个故事,其中包含自定义视图界面。这是customeview类定义。
@interface CustomTableCellview : UITableViewCell {
UILabel *titleOfPost;
UILabel *userProfileName;
UIImageView* profileImage;
UILabel *countOfFave;
}
@property(nonatomic,retain) IBOutlet UIImageView *profileImage;
@property(nonatomic,retain) IBOutlet UILabel *titleOfPost;
@property(nonatomic,retain) IBOutlet UILabel *countOfFave;
@property(nonatomic,retain) IBOutlet UILabel *userProfileName;
这些所有值都显示在我的表中。每当用户单击开/关按钮时,我想调用一个函数。这是我的表视图类定义。
@interface VIPsScreen : UITableViewController {
NSMutableArray* tableList;
IBOutlet CustomVIPCell *tblCell;
NSMutableArray* chengdArray;
}
我想将所有相关的“userProfileName”存储在数组“hengdArray”中,该数组的 UISWitch 值为“ON”。我将如何解决这个问题。 提前致谢
I have a tale which is containing a custom view interface. Here is customeview class definition.
@interface CustomTableCellview : UITableViewCell {
UILabel *titleOfPost;
UILabel *userProfileName;
UIImageView* profileImage;
UILabel *countOfFave;
}
@property(nonatomic,retain) IBOutlet UIImageView *profileImage;
@property(nonatomic,retain) IBOutlet UILabel *titleOfPost;
@property(nonatomic,retain) IBOutlet UILabel *countOfFave;
@property(nonatomic,retain) IBOutlet UILabel *userProfileName;
These all values are showing in my table. I want to call a function whenever user will click either ON/OFF button. Here is my tableview class definition.
@interface VIPsScreen : UITableViewController {
NSMutableArray* tableList;
IBOutlet CustomVIPCell *tblCell;
NSMutableArray* chengdArray;
}
I want to store all related "userProfileName" in array "chengdArray" which has UISWitch values "ON". How will I resolve this problem.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
在初始化 UISwitch 实例的地方
并作为回调方法,您应该在其中检查一个是否已切换并采取行动......
Use
where you're initializing instances of UISwitch and
as a callback method where you should check with one was switched and take actions...
您可以将此 [tempSwitch isOn] 与 if 语句一起使用,其中 tempSwitch 是 switchView 的名称
You can use this [tempSwitch isOn] with an if statement where tempSwitch is the name of your switchView