上一页 1 2 3 4 5 6 7 8 ··· 98 下一页
摘要: ``` -(IBAction)stretchImageView { UIImage *image1 =[UIImage imageNamed:@"direction.png"]; image1=[image1 stretchableImageWithLeftCapWidth:image1.size.width*0.5 topCapHeight:image1.size.heig... 阅读全文
posted @ 2018-08-14 12:12 路在脚下, 阅读(72) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zxm490484080/article/details/72210501 阅读全文
posted @ 2018-08-14 11:22 路在脚下, 阅读(89) 评论(0) 推荐(0) 编辑
摘要: ``` NSMutableArray mArray = [NSMutableArray arrayWithObjects:@4,@5,@9,@2,@3,@3,@2,@7, nil]; for (int i = 0; i 阅读全文
posted @ 2018-08-14 11:21 路在脚下, 阅读(84) 评论(0) 推荐(0) 编辑
摘要: ``` #import "NodeStack.h" typedef struct StackNode { int value; StackNode *next; }StackNode; typedef struct KStack{ StackNode *top; int count; }KStack; @implementation NodeStack ... 阅读全文
posted @ 2018-08-14 11:20 路在脚下, 阅读(77) 评论(0) 推荐(0) 编辑
摘要: ``` - (void)insertSort { NSMutableArray *dataArray = [NSMutableArray arrayWithObjects:@3,@4,@6,@2,@9,@7,@8, nil]; for (int i = 0; i=1 && [dataArray[j-1]integerValue]= 0 && [array[j] compare:te... 阅读全文
posted @ 2018-08-14 11:19 路在脚下, 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 如何快速搭建一个APP模型出来,很快很快那种; 登陆,注册 推送 分享 个人信息,手机号,身份证,职业,地址,省市区,邮箱, 扫描,图片上传 各种绘图,理财对比,以及历史信息,柱状图,。。。。。注意日期,时间的计算 手指,指纹密码 人脸识别认证 银行卡绑定 各种色块布局 滚动scrollview l 阅读全文
posted @ 2018-08-14 11:18 路在脚下, 阅读(266) 评论(0) 推荐(0) 编辑
摘要: ``` NSString *rateStr = [NSString stringWithFormat:@"七日年化 %.2f%%",info.rate]; [self.rateLabel setText:rateStr afterInheritingLabelAttributesAndConfiguringWithBlock: ^NSMutableAttributedString... 阅读全文
posted @ 2018-08-14 11:17 路在脚下, 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 机型 分辨率 机型 分辨率 机型 分辨率 iPhone 4/4S 960 640 iPhone 6S Plus 1920 1080 iPhone 8 Plus 1920 1080 iPhone 5/5S 1136 640 iPhone 7 1334 750 iPhone X 2436 1125 iP 阅读全文
posted @ 2018-08-14 11:16 路在脚下, 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 查看远端的url A refusing to merge unrelated histories B git pull origin master allow unrelated histories https://www.cnblogs.com/allanli/p/git_commands.htm 阅读全文
posted @ 2018-08-14 11:16 路在脚下, 阅读(90) 评论(0) 推荐(0) 编辑
摘要: ``` 设置返回按钮 UIBarButtonItem *bar = [[UIBarButtonItem alloc] initWithTitle:@"返回" style:0 target:nil action:nil]; [self.navigationItem setBackBarButtonItem:bar]; 设置navititle颜色 self.navigationContro... 阅读全文
posted @ 2018-08-14 11:13 路在脚下, 阅读(148) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 98 下一页