077设置分段卡某个选项不可用

效果如下:

ViewController.h

1 #import <UIKit/UIKit.h>
2
3 @interface ViewController : UIViewController
4 @end

ViewController.m

 1 #import "ViewController.h"
 2
 3 @interface ViewController ()
 4 - (void)layoutUI;
 5 @end
 6
 7 @implementation ViewController
 8
 9 - (void)viewDidLoad {
10     [super viewDidLoad];
11
12     [self layoutUI];
13 }
14
15 - (void)didReceiveMemoryWarning {
16     [super didReceiveMemoryWarning];
17     // Dispose of any resources that can be recreated.
18 }
19
20 - (void)layoutUI {
21     UISegmentedControl *smtCContentOffset = [[UISegmentedControl alloc] initWithItems:@[@"First", @"Second", @"Third"]];
22     smtCContentOffset.tintColor = [UIColor colorWithRed:1.000 green:0.434 blue:0.469 alpha:1.000];
23     smtCContentOffset.selectedSegmentIndex = 2;
24     smtCContentOffset.momentary = YES;
25     smtCContentOffset.center = self.view.center;
26
27     NSLog(@"分段卡的选项个数=%lu", (unsigned long)[smtCContentOffset numberOfSegments]); //分段卡的选项个数=3
28
29     //设置某个选项不可用
30     [smtCContentOffset setEnabled:NO forSegmentAtIndex:0];
31     NSLog(@"分段卡的第一个选项是否可用?%@", [smtCContentOffset isEnabledForSegmentAtIndex:0] ? @"是" : @"否"); //分段卡的第一个选项是否可用?否
32     [self.view addSubview:smtCContentOffset];
33 }
34
35 @end
时间: 2024-10-12 14:57:41

077设置分段卡某个选项不可用的相关文章

HTML中的&lt;select&gt;标签如何设置默认选中的选项

方法有两种. 第一种通过<select>的属性来设置选中项,此方法可以在动态语言如php在后台根据需要控制输出结果. 1 2 3 4 5 < select  id =  "sel" > < option  value = "1" >1</ option > < option  value = "2"  selected = "selected" >2</ opt

Oracle RAC中su: &#8203;无法设置用户ID: 资源暂时不可用

su: 无法设置用户ID: 资源暂时不可用 问题现象: 问题原因: 问题是出在:在/etc/security/limits.d目录下,rhel6和centos6下面多了个文件:90-nproc.config,以保证root用户无限制.此配置会覆盖主配置文件的设定.内容如下: 解决方法: 删除/etc/security/limits.d/90-nproc.conf 文件中1024那一行,或者将1024值改大,保存退出,立即生效!

jquery设置表单元素为不可用代码实例

jquery设置表单元素为不可用代码实例:本章节通过简单的实例代码介绍一下如何将表单元素设置为不可用状态.代码实例如下: <!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>蚂蚁部落</t

070选择一个分段卡后可以改变屏幕的背景颜色

效果如下: ViewController.h 1 #import <UIKit/UIKit.h> 2 3 @interface ViewController : UIViewController 4 @property (strong, nonatomic) NSArray *arrColorName; 5 6 @end ViewController.m 1 #import "ViewController.h" 2 3 @interface ViewController (

076修改分段卡标题的位置

效果如下: ViewController.h 1 #import <UIKit/UIKit.h> 2 3 @interface ViewController : UIViewController 4 @end ViewController.m 1 #import "ViewController.h" 2 3 @interface ViewController () 4 - (void)layoutUI; 5 @end 6 7 @implementation ViewCont

CentOS 6/Linux su: 无法设置用户ID: 资源暂时不可用

系统环境:CentOS 6.5 今天在使用su切换用户doiido的的时候,出现了如下报错: # su - doiido su: 无法设置用户ID: 资源暂时不可用 同时使用SecureCRT等远程SSH工具均无法使用doiido用户连接. 查找相关资料,发现是在CentOS 6中,存在/etc/security/limits.d/90-nproc.config文件,此文件限制了普通权限用户的最大线程数,当此用户的最大线程数max user processes到达最高限制数,就无法连接登录.因此

Powerbuilder 异类查询要求为连接设置 ANSI_NULLS 和 ANSI_WARNINGS 选项

1.错误提示 异类查询要求为连接设置 ANSI_NULLS 和 ANSI_WARNINGS 选项.这将确保一致的查询语义.请启用这些选项,然后重新发出查询 2.发生场景 应用程序使用的是Powerbuilder开发环境,后台是Sqlserver2005.在数据库中创建一个存储过程用于计算复杂数据并返回结果集.重点是,此存储过程中远程连接了另一个业务服务器并进行业务处理.建立一个数据窗口(类型是存储过程).程序运行进行数据查询时,出现上述错误提示. 3.解决方法: 在Powerbuilder中执行

如何解决FineReader中多页扫描选项不可用问题

ABBYY FineReader是一款OCR文字识别软件,可快速方便地将扫描纸质文档.PDF文件和数码相机的图像转换成可编辑.可搜索的文本,不仅支持对页扫描,还支持多页扫描,但在使用软件的过程中,有时会遇到多页扫描选项不可用的情况,下面就告诉大家ABBYY FineReader中如果多页扫描选项不可用这一问题该如何解决? 若有疑问可直接访问:http://www.abbyychina.com/FRshiyongjiqiao/abbyyfr-dysmbukeyong.html 问题描述: ABBY

设置分段导航器

一.设置分段导航器 在ViewController.m里写 - (void)viewDidLoad { [super viewDidLoad]; [self creatView]; } // 设置页面 - (void)creatView{ UISegmentedControl *seg = [[UISegmentedControl alloc] initWithFrame:CGRectMake(5, 50, fDeviceWidth-10, 29)]; [seg insertSegmentWit