# segment **Repository Path**: dzu2016/segment ## Basic Information - **Project Name**: segment - **Description**: 方便好用的segment - **Primary Language**: Objective-C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-05-11 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #segment #### eg: _SegmentView = [[HMSegmentedControl alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, 40)]; _SegmentView.sectionTitles = @[@"正在处理",@"历史申报"]; _SegmentView.selectedSegmentIndex = 0; _SegmentView.backgroundColor = [UIColor whiteColor]; _SegmentView.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor grayColor], NSFontAttributeName : [UIFont systemFontOfSize:16]}; _SegmentView.selectedTitleTextAttributes = @{NSForegroundColorAttributeName : [UIColor orangeColor],NSFontAttributeName : [UIFont systemFontOfSize:16]}; _SegmentView.selectionIndicatorHeight = 3; _SegmentView.selectionIndicatorColor = [UIColor orangeColor]; _SegmentView.selectionStyle = HMSegmentedControlSelectionStyleFullWidthStripe; _SegmentView.selectionIndicatorLocation = HMSegmentedControlSelectionIndicatorLocationDown; [self.view addSubview:_SegmentView];