PHP群:95885625 Hbuilder+MUI群:81989597 站长QQ:634381967
    您现在的位置: 首页 > 开发编程 > iOS开发教程 > 列表

    开发编程-分类

    最新图文

    iOS开发教程

    定时器
    2020-09-30
    定时器

    myTimer=[NSTimerscheduledTimerWithTimeInterval:1.5target:selfselector:@selector(scrollTimer)userInfo:nilrepeats:NO]; //不重复,只...

    作者:张志勇  |  浏览:247次
    修改分割线
    2020-09-30
    修改分割线

    - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cellforRowAtIndexPath:(NSIndexPath *)indexPath...

    作者:张志勇  |  浏览:575次
    cornerRadius圆角    contentEdgeInsets按钮title在按钮边框中的位置
    2020-09-30
    cornerRadius圆角 contentEdgeInsets按钮title在按钮边框中的位置

    _attentionExhibitionButton = [UIButton buttonWithType:(UIButtonTypeCustom)]; _attentionExhibitionButton. .borderColor = [...

    作者:张志勇  |  浏览:486次
    图片处理,图片拉长不变形
    2020-09-30
    图片处理,图片拉长不变形

    UIImage * image1 = [[UIImage imageNamed:@"ic_control_input_default"] stretchableImageWithLeftCapWidth:4 topCapHeight:2]; ...

    作者:张志勇  |  浏览:280次
    设置分区头部底部间距
    2020-09-30
    设置分区头部底部间距

    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ return 10;}- (UIView *)tableVi...

    作者:张志勇  |  浏览:544次
    设置斜体字
    2020-09-30
    设置斜体字

    CGAffineTransform matrix = CGAffineTransformMake(1, 0, tanf(-20 * (CGFloat)M_PI / 180), 1, 0, 0); proposerLabel.transform = matrix;

    作者:张志勇  |  浏览:339次
    字段,字节限制
    2020-09-30
    字段,字节限制

    //textView字段限制255- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString...

    作者:张志勇  |  浏览:459次
    弹出菜单调用,view覆盖全屏封装方法
    2020-09-30
    弹出菜单调用,view覆盖全屏封装方法

    #pragma mark --- 封装调用creat&cancel弹出窗口//周期性-(void)createViewCyclicityFirstResponder{ // 为页面视图添加手势,当点...

    作者:张志勇  |  浏览:583次
    调用webservice
    2020-09-30
    调用webservice

    调用webservice (异步请求)#pragma mark ---用户日报-(void)dailyAct{ NSMutableArray *params=[NSMutableArray array]; NSDate...

    作者:张志勇  |  浏览:381次
    缓冲页面
    2020-09-30
    缓冲页面

    拉一个类MBProgressHUD.h和.MBProgressHUD.m//初始化进度框,置于当前的View当中 HUD = [[MBProgressHUD alloc] initWithView:self....

    作者:张志勇  |  浏览:584次