摘要:
UIView *bgRight=[[UIView alloc]initWithFrame:CGRectMake(SCREEN_WIDTH/2, 0, SCREEN_WIDTH/2, 35)]; bgRight.backgroundColor=[UIColor whiteColor]; [bgView 阅读全文
摘要:
http://www.tuicool.com/articles/zQJ32yj 阅读全文
摘要:
#import <UIKit/UIKit.h> @interface UITabBar (badge) - (void)showBadgeOnItemIndex:(int)index; //显示小红点 - (void)hideBadgeOnItemIndex:(int)index; //隐藏小红点 阅读全文
摘要:
for (UIBarItem *item in self.tabBarController.tabBar.items) { [item setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys: [UIFont fontWit 阅读全文
摘要:
在控制器的生命周期viewDidAppear里打印日志: 在控制器的生命周期dealloc里打印日志: 这样的话,只要日志没有打印出来,说明内存得不到释放,就需要学会分析内存引用问题了。 __weak __typeof(self) weakSelf = self; 阅读全文
摘要:
注意:之前没有设置 imageView 时,imageView 并不会被创建 解决办法 >异步下载图像 运行测试,存在的问题 >下载完成后不显示图片 原因分析: 解决办法 >使用占位图像 or 自定义 Cell 注意演示不在主线程更新图像的效果 解决办法 >自定义 Cell 问题 如果网络图片下载速 阅读全文
摘要:
1: //字条串是否包含有某字符串 gzz0307 这个不会崩溃ios7 if ([getString rangeOfString:@"="].location == NSNotFound) { MCLog(@"==不做处理=="); } else { MCLog(@"包含 "); NSArray 阅读全文
摘要:
1:通知 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWasShown:) name:UIKeyboardDidShowNotification object:nil]; [[NS 阅读全文