【iOS】UI学习(二)

风雨同行  金牌会员 | 2024-6-24 01:21:16 | 来自手机 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 800|帖子 800|积分 2400

进度条和滑动条

下面通过一个程序来讲解该内容
  1. #import <UIKit/UIKit.h>
  2. @interface ViewController : UIViewController
  3. {
  4.     //进度条对象
  5.     //一般用来表示下载或视频播放的进度
  6.     UIProgressView* _progressView;
  7.     //滑动条的定义
  8.     //一般用来进行调整音乐音量等
  9.     UISlider* _slider;
  10. }
  11. //定义一个进度条属性
  12. @property (retain, nonatomic) UIProgressView* progressView;
  13. //定义一个滑动条属性
  14. @property (retain, nonatomic) UISlider* slider;
  15. @end
复制代码
  1. #import "ViewController.h"
  2. @interface ViewController ()
  3. @end
  4. @implementation ViewController
  5. - (void)viewDidLoad {
  6.     [super viewDidLoad];
  7.     // Do any additional setup after loading the view.
  8.     _progressView = [[UIProgressView alloc] init];
  9.     //进度条的宽度是固定的,所以第四个参数并没有意义
  10.     _progressView.frame = CGRectMake(100, 400, 200, 100);
  11.     //进度条默认为蓝色
  12.     _progressView.progressTintColor = [UIColor greenColor];
  13.     _progressView.trackTintColor = [UIColor blackColor];
  14.     //设置它的进度值
  15.     _progressView.progress = 0;
  16.     //设置进度条的风格特征
  17.     _progressView.progressViewStyle = UIProgressViewStyleDefault;
  18.     [self.view addSubview:_progressView];
  19.    
  20.     _slider = [[UISlider alloc] init];
  21.     //位置设置,宽度不可变更
  22.     _slider.frame = CGRectMake(10, 500, 200, 100);
  23.     //设置滑动条最大值100
  24.     _slider.maximumValue = 100;
  25.     //设置滑动条最小值,可以为负值
  26.     _slider.minimumValue = 0;
  27.     //设置滑动条的滑块的位置
  28.     _slider.value = 0;
  29.     //左侧滑条背景颜色(以滑块为起点)
  30.     _slider.minimumTrackTintColor = [UIColor greenColor];
  31.     //右侧滑条背景颜色
  32.     _slider.maximumTrackTintColor = [UIColor redColor];
  33.     //设置滑块的颜色
  34.     _slider.thumbTintColor = [UIColor blueColor];
  35.     //对滑条移动添加函数
  36.     [_slider addTarget:self action:@selector(press) forControlEvents:UIControlEventValueChanged];
  37.     [self.view addSubview:_slider];
  38. }
  39. -(void)press
  40. {
  41.    
  42.     _progressView.progress = (_slider.value - _slider.minimumValue)/(_slider.maximumValue - _slider.maximumValue);
  43.     NSLog(@"value = %f", _slider.value);
  44. }
  45. @end
复制代码
效果图

步进器与分栏控件

  1. #import <UIKit/UIKit.h>
  2. @interface ViewController : UIViewController
  3. {
  4.     //定义步进器对象
  5.     //按照一定的数字来调整某个数据
  6.     UIStepper* _stepper;
  7.     //分栏控制器定义
  8.     UISegmentedControl* _segControl;
  9. }
  10. @property (retain, nonatomic) UIStepper* stepper;
  11. @property (retain, nonatomic) UISegmentedControl* segControl;
  12. @end
复制代码
  1. #import "ViewController.h"
  2. @interface ViewController ()
  3. @end
  4. @implementation ViewController
  5. @synthesize stepper = _stepper;
  6. @synthesize segControl = _segControl;
  7. - (void)viewDidLoad {
  8.     [super viewDidLoad];
  9.    
  10.     //创建步进器对象
  11.     _stepper = [[UIStepper alloc] init];
  12.     //宽度是固定的,无法改变
  13.     _stepper.frame = CGRectMake(100, 100, 100, 40);
  14.     //设置步进器的最小值
  15.     _stepper.minimumValue = 0;
  16.     //设置步进器的最大值
  17.     _stepper.maximumValue = 100;
  18.     //设置步进器的当前值
  19.     _stepper.value = 0;
  20.     //设置步进器美走一次的value值
  21.     _stepper.stepValue = 5;
  22.     //是否将步进结果通过事件函数响应出来
  23.     //YES:这时会一边执行步进器一边执行事件函数。随着按住的时间越长,执行步进器的速度就越快
  24.     //NO:这是会执行步进器,只会在松开按钮时执行一次事件函数
  25.     _stepper.continuous = NO;
  26.     //当为YES时,按住按钮就会一直执行步进器
  27.     //NO时,按住按钮只会执行一次步进器
  28.     _stepper.autorepeat = YES;
  29.     //添加事件函数
  30.     [_stepper addTarget:self action:@selector(press) forControlEvents:UIControlEventValueChanged];
  31.     [self.view addSubview:_stepper];
  32.    
  33.    
  34.     //创建分栏控件对象
  35.     _segControl = [[UISegmentedControl alloc] init];
  36.     //宽度仍然不可改变
  37.     _segControl.frame = CGRectMake(10, 200, 300, 40);
  38.     //P1:按钮选项文字
  39.     //P2:按钮的索引位置
  40.     //P3:是否有插入的动画效果
  41.     [_segControl insertSegmentWithTitle:@"ak" atIndex:0 animated:NO];
  42.     [_segControl insertSegmentWithTitle:@"a1" atIndex:1 animated:NO];
  43.     [_segControl insertSegmentWithTitle:@"a4" atIndex:2 animated:NO];
  44.     _segControl.selectedSegmentIndex = 1;
  45.    
  46.     [self.view addSubview: self.segControl];
  47.    
  48.     [_segControl addTarget:self action:@selector(press1) forControlEvents:UIControlEventValueChanged];
  49. }
  50. -(void) press
  51. {
  52.     NSLog(@"Value = %f", _stepper.value);
  53. }
  54. -(void) press1
  55. {
  56.     NSLog(@"%ld", (long)self.segControl.selectedSegmentIndex);
  57. }
  58. @end
复制代码
效果图


告诫对话框和提示等待器

下面是几个将会用到的方法

  • UIAlertController 中创建实例的指定初始化程序。该方法会创建具有特定标题、消息和首选样式的警报控制器。
    alertControllerWithTitlenullable NSString *)title messagenullable NSString *)message preferredStyleUIAlertControllerStyle)preferredStyle:


  • title:设置告诫框的标题,如果无标题为nil;
  • message:在告诫框中显示的内容,无内容的话设置为nil;
  • oreferredStyle:告诫控制器的样式。可以是 UIAlertControllerStyleAlert 或UIAlertControllerStyleActionSheet。前者表示告诫控制器以弹出方式显示,后者表示以滑出方式显示。

  • actionWithTitle是一个iOS开发中的方法,用于创建一个带有标题的动作按钮。
    actionWithTitleNSString *)title styleUIPreviewActionStyle)style handlervoid (^)(UIPreviewAction *action, UIViewController *previewViewController))handler:


  • title:操作的名称
  • style:操作的样式,有UIAlertActionStyleDefault,UIAlertActionStyleCancel, UIAlertActionStyleDestructive三种;
   UIAlertActionStyleDefault:表示一个默认的操作,通常为白底蓝字
UIAlertActionStyleCancel:表示一个取消操作,字体通常会做加粗处理
UIAlertActionStyleDestructive:表示一个具有粉碎性的操作,通常利用红字。
  

  • 最后一部分表示执举措作将要执行的块
  1. #import <UIKit/UIKit.h>
  2. @interface ViewController : UIViewController {
  3.     //定义一个警告对话框视图对象
  4.     UIAlertController* _elertView;
  5.     //等待提示对象
  6.     //当下载,或加载比较大的文件时,可以显示此控件,处于提示等待状态
  7.     UIActivityIndicatorView* _activityIndicator;
  8. }
  9. @property (retain, nonatomic) UIAlertController* elertView;
  10. @property (retain, nonatomic) UIActivityIndicatorView* activityIndicator;
  11. @end
复制代码
  1. #import "ViewController.h"
  2. @interface ViewController ()
  3. @end
  4. @implementation ViewController
  5. //同步属性和成员变量
  6. @synthesize elertView = _elertView;
  7. @synthesize activityIndicator = _activityIndicator;
  8. - (void)viewDidLoad {
  9.     [super viewDidLoad];
  10.     // Do any additional setup after loading the view.
  11.     //通过for循环定义两个按钮
  12.     for(int i = 0; i < 2; i++) {
  13.         UIButton* btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
  14.         btn.frame = CGRectMake(100, 100 + i * 100, 100, 40);
  15.         if(i == 0) {
  16.             [btn setTitle:@"警告对话框" forState:UIControlStateNormal];
  17.             
  18.         } else {
  19.             [btn setTitle:@"等待提示器" forState:UIControlStateNormal];
  20.             
  21.         }
  22.         btn.tag = 100 + i;
  23.         [btn addTarget:self action:@selector(pressBtn:) forControlEvents:UIControlEventTouchUpInside];
  24.         
  25.         [self.view addSubview:btn];
  26.     }
  27. }
  28. -(void) pressBtn:(UIButton*) btn
  29. {
  30.     //创建警告对话框
  31.     if(btn.tag == 100) {
  32.         _elertView = [UIAlertController alertControllerWithTitle:@"警告" message:@"您的手机电量过低,即将关机" preferredStyle:UIAlertControllerStyleAlert];
  33.         UIAlertAction* action01 = [UIAlertAction actionWithTitle:@"确认" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){/* 在这里编写执行该选项的代码*/}];
  34.         UIAlertAction* action02 = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action){/* 在这里编写执行该选项的代码*/}];
  35.         [_elertView addAction:action01];
  36.         [_elertView addAction:action02];
  37.         [self presentViewController:_elertView animated:YES completion:nil];
  38.     } else if(btn.tag == 101) {//创建等待提示器
  39.         //宽度和高度不可改变
  40.         _activityIndicator = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(100, 300, 80, 80)];
  41.         //设定提示的风格
  42.         _activityIndicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyleMedium;
  43.         //_activityIndicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyleLarge;
  44.         [self.view addSubview:_activityIndicator];
  45.         //启动动画并显示
  46.         [_activityIndicator startAnimating];
  47.         //停止动画并隐藏
  48.         //[_activityIndicator stopAnimating];
  49.     }
  50. }
  51. @end
复制代码
效果图

UITextField

UITextField控件

定义
UITextField是 iOS 中的一个 UIKit 类,表示单行文本输入字段。它允许用户在应用程序中输入和编辑文本
下面通过代码来演示该程序
  1. #import <UIKit/UIKit.h>
  2. @interface ViewController : UIViewController <UITextFieldDelegate>
  3. {
  4.     UITextField* _textField;
  5. }
  6. @property (retain, nonatomic) UITextField* textField;
  7. @end
复制代码
  1. - (void)viewDidLoad {
  2.     [super viewDidLoad];
  3.     // Do any additional setup after loading the view.
  4.     self.textField = [[UITextField alloc] init];
  5.     self.textField.frame = CGRectMake(100, 250, 200, 40);
  6.     self.textField.text = @"用户名";
  7.     //self.textField.textColor = [UIColor blueColor];
  8.     //字体的大小
  9.     self.textField.font = [UIFont systemFontOfSize:24 ];
  10.     //字体边框的风格
  11.     //UITextBorderStyleNone:无边框风格
  12.     //UITextBorderStyleLine:线框风格
  13.     //UITextBorderStyleBezel:Bezel风格
  14.     //UITextBorderStyleRoundedRect:圆角风格
  15.     self.textField.borderStyle = UITextBorderStyleRoundedRect;
  16.     //设置虚拟键盘的风格
  17.     //UIKeyboardTypeDefault:默认的风格
  18.     //UIKeyboardTypeNumberPad:数字和字母结合的风格      
  19.     //UIKeyboardTypePhonePad:纯数字风格
  20.     self.textField.keyboardType = UIKeyboardTypeDefault;
  21.     //当text为空的时候,显示下面的文字
  22.     self.textField.placeholder = @"请输入用户名...";
  23.     //是否进行密码输入
  24.     //YES:隐式输入内容
  25.     //NO:显示输入内容(默认为NO)
  26.     self.textField.secureTextEntry = NO;
  27.     [self.view addSubview:self.textField];
  28.     self.textField.delegate = self;
  29. }
复制代码
效果图

UITextFieldDelegate协议

  1. -(void) touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
  2. {
  3.     [self.textField resignFirstResponder];
  4.     NSLog(@"键盘已回收");
  5. }
  6. - (void)textFieldDidBeginEditing:(UITextField *)textField
  7. {
  8.     NSLog(@"开始输入了");
  9. }
  10. - (void)textFieldDidEndEditing:(UITextField *)textField
  11. {
  12.     NSLog(@"结束编译了");
  13. }
  14. - (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
  15. {
  16.     return YES;
  17. }
  18. - (BOOL)textFieldShouldEndEditing:(UITextField *)textField
  19. {
  20.     return YES;
  21. }
复制代码
留意:必须在viewDidLoad中设置署理对象才能调用以上的函数
  1. self.textField.delegate = self;
复制代码
结果

UIScrollView



  • UIScrollView实际上就是一个可以滚动的UIView,它可以左右滚动或者上下滚动。
  • UIScrollView支持平移(水平和垂直滚动)和缩放(捏合缩放)手势,允许用户导航和与内容交互。
  • UIScrollView可以根据开发人员的偏好自动缩放内容以适应可用空间或保持内容的原始大小。
  1. #import <UIKit/UIKit.h>
  2. @interface ViewController : UIViewController <UIScrollViewDelegate>
  3. {
  4.     UIScrollView* _sv;
  5. }
  6. @property (retain, nonatomic) UIScrollView* sv;
  7. @end
复制代码
  1. #import "ViewController.h"
  2. @interface ViewController ()
  3. @end
  4. @implementation ViewController
  5. @synthesize sv=_sv;
  6. - (void)viewDidLoad {
  7.     [super viewDidLoad];
  8.    
  9.     self.sv = [[UIScrollView alloc] init];
  10.     self.sv.frame = CGRectMake(0, 0, 394, 852);
  11.     //是否按照整页来滚动视图
  12.     self.sv.pagingEnabled = NO;
  13.     //是否可以开启滚动效果
  14.     self.sv.scrollEnabled = YES;
  15.     //设置画布的大小,画布显示在滚动视图内部,一般大于frame的大小
  16.     self.sv.contentSize = CGSizeMake(394, 852 * 5);
  17.     //是否可以边缘弹动效果
  18.     self.sv.bounces = NO;
  19.     //是否开启横向、纵向弹动效果
  20.     self.sv.alwaysBounceHorizontal = YES;
  21.     self.sv.alwaysBounceVertical = YES;
  22.     //显示横向滚动条
  23.     self.sv.showsHorizontalScrollIndicator = YES;
  24.     //是否实现纵向滚动条
  25.     self.sv.showsVerticalScrollIndicator = YES;
  26.     self.sv.backgroundColor = [UIColor greenColor];
  27.     //添加图片进去
  28.     for(int i = 0; i < 5; i++) {
  29.         NSString* strName = [NSString stringWithFormat:@"%d.JPG", i + 1 ];
  30.         UIImage* image = [UIImage imageNamed:strName];
  31.         UIImageView* iView = [[UIImageView alloc] initWithImage:image];
  32.         iView.frame = CGRectMake(0, 852 * i, 394, 852);
  33.         [self.sv addSubview:iView];
  34.     }
  35.     //将当前视图控制器做为代理对象
  36.     self.sv.delegate = self;
  37.     [self.view addSubview:self.sv];
  38. }
  39. //当滚动视图移动时,只要offset坐标发生变化时,都会调用此函数
  40. -(void) scrollViewDidScroll:(UIScrollView *)scrollView
  41. {
  42.     NSLog(@"y = %f", scrollView.contentSize.width);
  43. }
  44. @end
复制代码
效果图

布局子视图

我们可以手动或者自动布局子视图。
手动布局子视图

ViewController.h:
  1. #import "ViewController.h"
  2. #import "ViewSuper.h"
  3. @interface ViewController ()
  4. @end
  5. @implementation ViewController
  6. - (void)viewDidLoad {
  7.     [super viewDidLoad];
  8.    
  9.    
  10.     ViewSuper* sView = [[ViewSuper alloc] init];
  11.     sView.frame = CGRectMake(20, 20, 120, 200);
  12.     sView.backgroundColor = [UIColor greenColor];
  13.     [sView createSubViews];
  14.     [self.view addSubview: sView];
  15.     UIButton* btn1 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
  16.     btn1.frame = CGRectMake(300, 480, 80, 40);
  17.     [btn1 setTitle:@"放大" forState:UIControlStateNormal];
  18.     [btn1 addTarget:self action:@selector(press1) forControlEvents:UIControlEventTouchUpInside];
  19.     [self.view addSubview: btn1];
  20.     UIButton* btn2 = [UIButton buttonWithType:UIButtonTypeRoundedRect];
  21.     btn2.frame = CGRectMake(300, 580, 80, 40);
  22.     [btn2 setTitle:@"缩小" forState:UIControlStateNormal];
  23.     btn1.titleLabel.font = [UIFont systemFontOfSize: 32];
  24.     btn2.titleLabel.font = [UIFont systemFontOfSize: 32];
  25.     [btn2 addTarget:self action:@selector(press2) forControlEvents:UIControlEventTouchUpInside];
  26.     [self.view addSubview: btn2];
  27.     sView.tag = 101;
  28. }
  29. -(void) press1
  30. {
  31.     //放大父视图动画
  32.     ViewSuper* sView = (ViewSuper*)[self.view viewWithTag:101];
  33.     [UIView animateWithDuration:1.0 animations:^{
  34.         sView.frame = CGRectMake(20, 20, 300, 500);}];
  35. }
  36. -(void) press2
  37. {
  38.     //缩小父视图
  39.     ViewSuper* sView = (ViewSuper*)[self.view viewWithTag:101];
  40.     [UIView animateWithDuration:1.0 animations:^{
  41.         sView.frame = CGRectMake(20, 20, 120, 200);}];
  42. }
  43. @end
复制代码
ViewSuper类
  1. #import <UIKit/UIKit.h>
  2. NS_ASSUME_NONNULL_BEGIN
  3. @interface ViewSuper : UIView
  4. {
  5.     UIView* _view1;
  6.     UIView* _view2;
  7.     UIView* _view3;
  8.     UIView* _view4;
  9. }
  10. -(void) createSubViews;
  11. @end
复制代码
  1. #import "ViewSuper.h"
  2. @implementation ViewSuper
  3. - (void)createSubViews {
  4.     //左上角视图
  5.     _view1 = [[UIView alloc] init];
  6.     _view1.frame = CGRectMake(0, 0, 40, 40);
  7.    
  8.     //右上角视图
  9.     _view2 = [[UIView alloc] init];
  10.     _view2.frame = CGRectMake(self.bounds.size.width - 40, 0, 40, 40);
  11.    
  12.     //右下角视图
  13.     _view3 = [[UIView alloc] init];
  14.     _view3.frame = CGRectMake(self.bounds.size.width - 40, self.bounds.size.height - 40, 40, 40);
  15.    
  16.     //左下角视图
  17.     _view4 = [[UIView alloc] init];
  18.     _view4.frame = CGRectMake(0, self.bounds.size.height - 40, 40, 40);
  19.    
  20.     _view1.backgroundColor = [UIColor redColor];
  21.     _view2.backgroundColor = [UIColor redColor];
  22.     _view3.backgroundColor = [UIColor redColor];
  23.     _view4.backgroundColor = [UIColor redColor];
  24.    
  25.     [self addSubview: _view1];
  26.     [self addSubview: _view2];
  27.     [self addSubview: _view3];
  28.     [self addSubview: _view4];
  29. }
  30. - (void)layoutSubviews {
  31.     [UIView animateWithDuration: 1.0 animations:^ {
  32.         self->_view1.frame = CGRectMake(0, 0, 40, 40);
  33.         self->_view2.frame = CGRectMake(self.bounds.size.width - 40, 0, 40, 40);
  34.         self->_view3.frame = CGRectMake(self.bounds.size.width - 40, self.bounds.size.height - 40, 40, 40);
  35.         self->_view4.frame = CGRectMake(0, self.bounds.size.height - 40, 40, 40);
  36.     }];
  37. }
  38. @end
复制代码
效果图

点击放大后:

自动布局子视图

自动布局子视图是通过UI自己提供的属性和方法来实现布局子视图。
autoresizingMask属性:这是一个 UIView 属性,允许当父视图的边界发生变化时,视图的大小和位置怎样自动调整。

  1.         [UIView animateWithDuration:1.0 animations:^{
  2.             self->_superView.frame = CGRectMake(10, 30, 300, 500);
  3.         }];
复制代码
这是一个类方法,允许为一个或多个视图的属性变化制作动画。第一个参数是指动画持续的时间,第二个参数此参数是一个包含将要动画化的代码的块(或闭包)。在此块中,您可以修改一个或多个视图的属性,并且这些更改将以动画形式呈现。
代码演示
ViewController:
  1. #import <UIKit/UIKit.h>
  2. @interface ViewController : UIViewController
  3. {
  4.     UIView* _superView;
  5.     UILabel* _view1;
  6.     UILabel* _view2;
  7.     UILabel* _view3;
  8.     UILabel* _view4;
  9.     UIView* _viewCenter;
  10. }
  11. @end
复制代码
  1. #import "ViewController.h"@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad {    [super viewDidLoad];        _superView = [[UIView alloc] init];    _superView.frame = CGRectMake(20, 50, 180, 300);    _superView.backgroundColor = [UIColor redColor];        _view1 = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 40, 40)];    _view1.text = @"1";    _view1.backgroundColor = [UIColor greenColor];        _view2 = [[UILabel alloc] initWithFrame:CGRectMake(180-40, 0, 40, 40)];    _view2.text = @"2";    _view2.textAlignment = NSTextAlignmentCenter;    _view2.backgroundColor = [UIColor greenColor];        _view3 = [[UILabel alloc] initWithFrame:CGRectMake(0, 300-40, 40, 40)];    _view3.text = @"3";    _view3.backgroundColor = [UIColor greenColor];        _view4 = [[UILabel alloc] initWithFrame:CGRectMake(180-40, 300-40, 40, 40)];    _view4.text = @"4";    _view4.backgroundColor = [UIColor greenColor];        [_superView addSubview:_view1];    [_superView addSubview:_view2];    [_superView addSubview:_view3];    [_superView addSubview:_view4];        _viewCenter = [[UIView alloc] initWithFrame:CGRectMake(0, 0, _superView.bounds.size.width, 40)];    _viewCenter.center = CGPointMake(180/2, 300/2);    _viewCenter.backgroundColor = [UIColor greenColor];    [_superView addSubview: _viewCenter];    [self.view addSubview:_superView];    _viewCenter.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleTopMargin|    UIViewAutoresizingFlexibleBottomMargin;    _view2.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;    _view3.autoresizingMask = UIViewAutoresizingFlexibleTopMargin;    _view4.autoresizingMask = UIViewAutoresizingFlexibleTopMargin|UIViewAutoresizingFlexibleLeftMargin;}//每一次触摸屏幕后,就会放大或缩小屏幕-(void) touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{    static BOOL isLarge = NO;    if(isLarge == NO) {        [UIView animateWithDuration:1.0 animations:^{
  2.             self->_superView.frame = CGRectMake(10, 30, 300, 500);
  3.         }];
  4.     } else {        [UIView animateWithDuration:1.0 animations:^{                    self->_superView.frame = CGRectMake(20, 50, 180, 300);        }];    }    isLarge = !isLarge;}@end
复制代码
效果图:


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

风雨同行

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表