ios开发日常收集

Day-1:2016年03月23日11:59:23

移除视图中的所有子视图的新姿势

关于subviews属性:
@property(nonatomic,readonly,copy) NSArray<__kindof UIView *> *subviews;
子视图移除方法:
[self.view.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];```

###UITabelViewCell的分割线铺满cell

-(void)tableView:(UITableView)tableView willDisplayCell:(UITableViewCell)cell forRowAtIndexPath:(NSIndexPath*)indexPath{
if([tableViewrespondsToSelector:@selector(setSeparatorInset:)]) {
[tableViewsetSeparatorInset:UIEdgeInsetsZero];
}
if([tableViewrespondsToSelector:@selector(setLayoutMargins:)]) {
[tableViewsetLayoutMargins:UIEdgeInsetsZero];
}
if([cellrespondsToSelector:@selector(setLayoutMargins:)]) {
[cellsetLayoutMargins:UIEdgeInsetsZero];
}
}


###UITextField输入文字不从x=0的位置开始,需要继承UITextField然后重写以下2个方法。
其中offset就是你需要偏移的距离。
  • (CGRect)textRectForBounds:(CGRect)bounds{
    CGFloat offset = 10.0f;
    CGRect inset = CGRectMake(bounds.origin.x + offset, bounds.origin.y, bounds.size.width, bounds.size.height);
    return inset;
    }

  • (CGRect)editingRectForBounds:(CGRect)bounds{
    CGFloat offset = 10.0f;
    CGRect inset = CGRectMake(bounds.origin.x + offset, bounds.origin.y, bounds.size.width, bounds.size.height);
    return inset;
    }


![](http://upload-images.jianshu.io/upload_images/442591-b3f6a4dd6b650f5f.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)UITextField的输入起始位置和占位符不在最左端

补充:重写以上2个方法之后,你会发现当你设置如下属性的时候
phoneTextField.clearButtonMode = UITextFieldViewModeWhileEditing;

编辑的内容会盖在删除按钮上,这不是我们想要的。

![](http://upload-images.jianshu.io/upload_images/442591-23e6011b697f70b0.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)输入的内容盖住了删除按钮(虽然删除按钮还有作用)

经过测试,发现***删除按钮的高度和宽度都是19***。验证过程如下(测试环境:iOS9.2下的iPhone4s和iPhone6)
tips:如果你对结果(***删除按钮的高度和宽度都是19***)有疑问可以尝试不同的方式:1.修改textfield的高度;2.修改textfield的字体大小;3.更换不同的iphone设备;4.更换不同的iOS系统
遍历self的子视图,如果子视图为UIButton对象则将其背景色设置为红色,以验证是否为删除按钮
  • (CGRect)textRectForBounds:(CGRect)bounds{
    NSLog(@"%@",self.subviews);
    for (id view in self.subviews) {
    if ([view isKindOfClass:[UIButton class]]) {
    ((UIButton *)view).backgroundColor = [UIColor redColor];
    }
    }
    return [super textRectForBounds:bounds];
    }
![UIButton对象就是删除按钮,size为19*19](http://upload-images.jianshu.io/upload_images/442591-e9b0450c9fcdad9e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

可以看到删除按钮的背景色变为了红色:
![背景色变为红色的删除按钮](http://upload-images.jianshu.io/upload_images/442591-c5b04bde23d40090.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

足以说明删除按钮的高度和宽度都是19。那么将上面的代码改为如下代码就可以完美解决这个问题。
  • (CGRect)textRectForBounds:(CGRect)bounds{
    CGFloat offset = 10.0f;
    CGFloat clearButtonWidthAndHeight =19;
    CGRect inset = CGRectMake(bounds.origin.x + offset, bounds.origin.y, bounds.size.width - offset - clearButtonWidthAndHeight, bounds.size.height);
    return inset;
    }

  • (CGRect)clearButtonRectForBounds:(CGRect)bounds{
    CGFloat widthAndHeight = 19;
    CGRect inset = CGRectMake(bounds.size.width - widthAndHeight, (bounds.size.height - widthAndHeight) / 2.0f, widthAndHeight, widthAndHeight);
    return inset;
    }

  • (CGRect)editingRectForBounds:(CGRect)bounds{
    CGFloat offset = 10.0f;
    CGFloat clearButtonWidthAndHeight = 19;
    CGRect inset = CGRectMake(bounds.origin.x + offset, bounds.origin.y, bounds.size.width - clearButtonWidthAndHeight, bounds.size.height);
    return inset;
    }


###系统图片渲染
当我们在设置一些系统的控件,比如说UIBarButtonItem得时候,如果我们使用一张图片来设置UIBarButtonItem,你会发现系统把图片渲染成了蓝色的。实际上我们想要使用自己默认的图片,那么这个时候该怎么办呢?

![原始图片](http://upload-images.jianshu.io/upload_images/442591-2c184eed8399f2c6.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

![不做设置,系统渲染之后的图片](http://upload-images.jianshu.io/upload_images/442591-3032dbf4411ee95e.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

我们发现,UIImage有一个属性:renderingMode,但是是只读的。
@property(nonatomic, readonly) UIImageRenderingMode renderingMode NS_AVAILABLE_IOS(7_0);

又发现一个了方法:
`- (UIImage *)imageWithRenderingMode:(UIImageRenderingMode)renderingMode NS_AVAILABLE_IOS(7_0);`

这个方法返回一个UIImage,是UIImage的对象方法。注意:NS_AVAILABLE_IOS(7_0);表示在IOS7.0之后有效。
解决办法如下:

UIImage *image = [UIImage imageNamed:MENU_IMAGE];
//关闭系统图片渲染效果,使用原来的图片
image = [image imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
UIBarButtonItem *item =[[UIBarButtonItem alloc] initWithImage:image style:UIBarButtonItemStylePlain target:self action:selector];


注:UIImageRenderingMode是一个枚举类型,有以下几种选项。而renderingMode属性的默认值是UIImageRenderingModeAutomatic,即UIImage是否使用Tint Color取决于它显示的位置

typedef NS_ENUM(NSInteger, UIImageRenderingMode) {
UIImageRenderingModeAutomatic, // Use the default rendering mode for the context where the image is used(// 根据图片的使用环境和所处的绘图上下文自动调整渲染模式。)
UIImageRenderingModeAlwaysOriginal, // Always draw the original image, without treating it as a template(// 始终绘制图片原始状态,不使用Tint Color。)
UIImageRenderingModeAlwaysTemplate, // Always draw the image as a template image, ignoring its color information(// 始终根据Tint Color绘制图片,忽略图片的颜色信息。)
} NS_ENUM_AVAILABLE_IOS(7_0);


###标签控制器一个导航控制器的VC切换到另一个导航控制器并push一个新VC

结构:tab作为window的根控制器,tab下有3个navc,每一个navc下有一个viewcontroller作为根视图。

![效果图](http://upload-images.jianshu.io/upload_images/442591-cb1d75c20eb6fc86.gif?imageMogr2/auto-orient/strip)

这里面有个坑:
- 进入app之后首页的vc被初始化了,而订单的vc并没有进行初始化。
下面是切换到对应的navc,然后将本身pop回去,最后发出通知。你可以尝试调换3句代码的顺序会有不同的效果,其中的原因主要集中在通知身上。
![](http://upload-images.jianshu.io/upload_images/442591-677c4716d373a134.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

###SearchBar背景颜色设置

_searchBar.backgroundImage = [[UIImage alloc] init];
_searchBar.barTintColor = TintColor;
[_searchBar setBackgroundColor:[UIColor colorWithHex:0xf0f0f0]];


![Paste_Image.png](http://upload-images.jianshu.io/upload_images/442591-5c49286bff529aad.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,802评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,109评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,683评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,458评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,452评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,505评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,901评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,550评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,763评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,556评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,629评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,330评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,898评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,897评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,140评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,807评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,339评论 2 342

推荐阅读更多精彩内容