iOS杂记

有些很简单的就随便看看了,我这也是遇到了就记下来

1.iOS开发加载图片·imageNamedimageWithContentsOfFile的区别
分析:
[UIImage imageNamed:@"placeHolder"],imageNamed只适合用于小尺寸图片的读取,或重复使用一张图片的时候,而当加载一些比较大的图片文件的时候我们应当尽量避免使用这个方法.
NSString *filePath = [[NSBundle mainBundle] pathForResource:fileName ofType:extension];
 UIImage *image = [UIImage imageWithContentsOfFile:filePath];
当有些图片在应用中只使用比较少的次数的,就可以用这样的方式,相比imageNamed会降低内存消耗,避免一些内存问题.
2.插入数组元素
insertObject: atIndex:
[array count]-1; 添加到最后一位
例:
 NSArray *arr = @[@"A",@"B",@"C",@"D"];
 NSMutableArray *array = [arr mutableCopy];
 NSInteger arrCount = array.count;
 [array insertObject:@"TheLast" atIndex:arrCount - 1];
3.解决触控点击事件和手势的冲突

一、使用场景:

  • 在项目实际过程中,经常需要在UITableView,UIScrollView等上添加手势来取消键盘响应,但是UIScrollView的机制是接收触摸事件,但是会让手势暂停一段时间time-off,会将手势截留一段时间,使用一个定时器来监听自身坐标值是否有所改变,如果坐标值改变了,说明滑动了,那么就会取消tracking events发送给subViews;相反如果坐标值未发生改变,那么就会将tracking events发送给子视图。
  • 如果在视图上添加了手势,那么明显就会有冲突,还好,苹果有api帮助我们解决这些问题,实现这下面代理方法,可以解决触控点击事件和手势的冲突,包括 UITexFiled,UITableView等等控件单击事件不响应问题。
 - (BOOL)gestureRecognizer:(UIGestureRecognizer*)gestureRecognizer 
 shouldReceiveTouch:(UITouch *)touch{
 if ([touch.view isKindOfClass:[UITextField class]]){
       return NO;
  }
  // 若为UITableViewCellContentView(即点击了tableViewCell),则不截获Touch事件
  if ([NSStringFromClass([touch.view class]) isEqualToString:@"UITableViewCellContentView"]) {
      return NO;
  }
     return YES;
 }
 tap.cancelsTouchesInView = YES;//是否取消点击处的其他action
4.设置button上字体的位置
 button.titleLabel.textAlignment = NSTextAlignmentLeft; 这句无效 
 button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentLeft;  
 button.titleEdgeInsets = UIEdgeInsetsMake(0, 10, 0, 0);
5.清除环信所有聊天记录
NSArray *conversations = [[EMClient sharedClient].chatManager loadAllConversationsFromDB];     
 for (EMConversation *con inconversations) {
      [condeleteAllMessages];
  }
6.CRASH: -[NSNull length]: unrecognized selector sent to instance以及-[NSNull rangeOfCharacterFromSet:]: unrecognized selector sent to instance 0的解决方法
iOS杂记_第1张图片
7. 修改环信消息列表的昵称
  • EaseConversationCell中的- (void)setModel:(id)model方法里获取服务器中聊天对象的昵称.
    iOS杂记_第2张图片
8.在cellForRowAtIndexPath代理方法里面添加以下代码解决cell的分割线不置顶问题
 if ([cell respondsToSelector:@selector (setSeparatorInset:)]) {
      [cell setSeparatorInset:UIEdgeInsetsZero];
  }
if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {
      [cell setLayoutMargins:UIEdgeInsetsZero];
  }
9.UICollectionView不能滑动问题
_mainCollection.alwaysBounceVertical = YES;
10.环信聊天修改用户头像圆角度
iOS杂记_第3张图片
11.实现公告跑马灯效果

一、上下滚动

导入#import “HRAdView.h"
@property (nonatomic, strong) HRAdView *adView; // 公告栏
 // 公告栏
_adView = [[HRAdView alloc] initWithTitles:[_dataDict[@"news"] valueForKey:@"title"]];  
_adView.backgroundColor = [UIColor whiteColor]; 
_adView.frame = CGRectMake(110, 0, main_Width- 120, 47);
_adView.textAlignment = NSTextAlignmentLeft;  
_adView.labelFont = kGetSystemFont(16);
_adView.color = GkColor(51, 51, 51);  
_adView.isHaveTouchEvent = YES;
_adView.time= 2.0f;
_adView.edgeInsets = UIEdgeInsetsMake(8, 8,8, 10);
 [_dybamicView addSubview:_adView];

二、水平滚动

1.导入#import “YFRollingLabel.h”
@property (nonatomic, strong) YFRollingLabel *label1;
2.实现下面方法:
 NSArray *arr = [_dataDict[@"news"] valueForKey:@"title"]; 
UIScrollView *scrollView = [[UIScrollView  alloc] initWithFrame:CGRectMake(110, 0, main_Width- 120, 47)];
scrollView.backgroundColor = [UIColor whiteColor];
scrollView.contentSize = CGSizeMake(self.view.frame.size.width, 1000);
[_dybamicView addSubview:scrollView];
_label1 = [[YFRollingLabel alloc] initWithFrame:CGRectMake(0, 0, scrollView.frame.size.width, 47) textArray:arr font:kGetSystemFont(16)textColor:GkColor(51, 51, 51)];
[scrollViewaddSubview:_label1];
_label1.speed= 1;
[_label1 setOrientation:RollingOrientationLeft];
[_label1 setInternalWidth:_label1.frame.size.width / 3];
12.在View里面实现页面跳转
iOS杂记_第4张图片
13.禁止UITableView的header悬停
- (void)scrollViewDidScroll:(UIScrollView*)scrollView {
if (scrollView == self.mainTableView){
UITableView *tableview = (UITableView*)scrollView;
CGFloat sectionHeaderHeight = 64;    
CGFloat sectionFooterHeight = 44;    
CGFloat offsetY = tableview.contentOffset.y;
if(offsetY >= 0 && offsetY <= sectionHeaderHeight){
   tableview.contentInset = UIEdgeInsetsMake(-offsetY, 0, -sectionFooterHeight, 0);
 }else if (offsetY >= sectionHeaderHeight && offsetY <= tableview.contentSize.height - tableview.frame.size.height
- sectionFooterHeight){
 tableview.contentInset = UIEdgeInsetsMake(-sectionHeaderHeight, 0, -sectionFooterHeight, 0);
  }else if (offsetY >= tableview.contentSize.height - tableview.frame.size.height - sectionFooterHeight && offsetY <= tableview.contentSize.height - tableview.frame.size.height){
 tableview.contentInset = UIEdgeInsetsMake(-offsetY, 0, -(tableview.contentSize.height - tableview.frame.size.height
- sectionFooterHeight), 0);
        }
    }
}
14.UIWebView自适应宽高
iOS杂记_第5张图片
15.返回到指定控制器<[2]是本控制器是第几级就是几>
UIViewController *viewCtl = self.navigationController.viewControllers[2];
 [self.navigationController popToViewController:viewCtl animated:YES];
16.让所有子控件无法响应交互
17.使用WKWebView适应屏幕尺寸
iOS杂记_第6张图片
18.如何查看App在AppStore中的地址
https://itunes.apple.com/cn/app/id1********2?mt=8,将id和?之间的数字改成App信息里面的App ID<这个是苹果自动生成的>
19.多个button可选唯一性

iOS杂记_第7张图片
20.隐藏导航栏下面的线条

iOS杂记_第8张图片

21.定时请求
iOS杂记_第9张图片
22.计算购物车总价
iOS杂记_第10张图片
23.在AppDelegate里面显示UIAlertController
iOS杂记_第11张图片
24.如何在代码中判断真机还是模拟器
iOS杂记_第12张图片

iOS杂记_第13张图片
25.0x8badf00d表示什么
iOS杂记_第14张图片
26.Masonry
mas_equalTo和equalTo
默认情况下
mas_equalTo有自动包装功能,比如自动将20包装为@20
equalTo没有自动包装功能
如果添加了下面的宏,那么mas_equalTo和equalTo就没有区别
#define MAS_SHORTHAND_GLOBALS
注意:这个宏一定要添加到#import "Masonry.h"前面
mas_width和width
默认情况下
width是make对象的一个属性,用来添加宽度约束用的,表示对宽度进行约束
mas_width是一个属性值,用来当做equalTo的参数,表示某个控件的宽度属性
 如果添加了下面的宏,mas_width也可以写成width
#define MAS_SHORTHAND
 mas_height、mas_centerX以此类推
27.使用Application Loader提交ipa报错No suitable application records were found. Verify your bundle identifier 'com.scxee.HairdressingDIY' is correct.
解决办法:在itunes Connect里创建一个新应用就可以了。
28.关于使用UITableView出现的关于** Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:]问题。
解决方法:实现- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath代理方法.
29.关于使用UITableView出现的*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle:问题。
解决方法:在 storyBoard 中设置的 cell 不用在控制器中注册。
30.关于使用UITableView出现的Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key headerLabel.'问题。
解决方法:把约束删除重现连。
31.关于使用UITableView出现的*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSSingleObjectArrayI objectAtIndex:]: index 1 beyond bounds [0 .. 0]'问题。
解决方法:控制器中如果是 storyboard 拖的静态 cell,在控制器中就不要实现- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section这两个代理方法。
32.点击 UITextField禁止键盘弹出。
 self.xxxTF.inputView = [[UIView alloc] initWithFrame:CGRectZero];
33.应用内调起微信。
屏幕快照 2018-10-29 下午5.49.47.png

iOS杂记_第15张图片
屏幕快照 2018-10-29 下午5.49.57.png
 NSURL *url = [NSURL URLWithString:@"weixin://"];
    BOOL hadInstalledWeixin = [[UIApplication sharedApplication] canOpenURL:url];
    if (hadInstalledWeixin) {
        // 安装了此 App
        if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 10.0) {
            //设备系统为IOS 10.0或者以上的
            [[UIApplication sharedApplication] openURL:url options:@{} completionHandler:nil];
        }else{
            //设备系统为IOS 10.0以下的
            [[UIApplication sharedApplication] openURL:url];
        }
    }else{
        [OMGToast showWithText:@"未安装微信!"];
    }

你可能感兴趣的:(iOS杂记)