随笔分类 -  iOS 人外有人

摘要:1 2 - (CGSize)sizeThatFits:(CGSize)size; 3 作用:return 'best' size to fit given size. does not actually resize view. Default is return existi... 阅读全文
posted @ 2016-01-12 12:00 Mantis-man
摘要:iOS9 开始苹果将HTTP全改为HTTPS了,所以出现网络请求失败问题,解决办法:1、改回HTTP: 在info.plist文件中添加一个Key:NSAppTransportSecurity(字典类型),然后给它添加一个Key:NSAllowsArbitraryLoads(Boolean型... 阅读全文
posted @ 2016-01-06 16:09 Mantis-man
摘要:#import "buttonCustom.h"#define KimageW 30#define KtitleH 21#define Kpadding 10@interface buttonCustom()@end@implementation buttonCustom- (instancetyp... 阅读全文
posted @ 2016-01-06 10:26 Mantis-man
摘要:运行,创建文件夹Payload, 打开文件夹Products 将.app 放入Payload,压缩,改后缀为ipa. 阅读全文
posted @ 2016-01-06 09:40 Mantis-man
摘要:1. 更新ruby终端输入如下命令(把Ruby镜像指向taobao,避免被墙,你懂得)gem sources --remove https://rubygems.org/gem sources -a https://ruby.taobao.org/gem sources -l (用来检查使用替换镜像... 阅读全文
posted @ 2016-01-06 09:39 Mantis-man
摘要:前言:在iOS开发中,有时候想改一下项目的名字,都会遇到很多麻烦。直接改项目名吧,XCODE又不会帮你改所有的名字。总是有很多文件、文件夹或者是项目设置的项。而且都是不能随便改的,有时候改着改着,编译不了。所以各位重命名项目时,记得先备份好一份噢。本文我会介绍一种方法,是我自己参考了很多资料得出的总... 阅读全文
posted @ 2016-01-06 09:30 Mantis-man
摘要:一、UITableView 有两种设置风格1 typedef NS_ENUM(NSInteger, UITableViewStyle) {2 UITableViewStylePlain, // regular table view3 UITableViewStyle... 阅读全文
posted @ 2016-01-05 10:08 Mantis-man