iOS 实用代码段(一)

细纲

  1. 一次性移除一个 UIView 所有子视图的方法
  2. 怎样把一个字典的数据添加到另一个字典中
  3. 获取某个字符在字符串中最后一个的位置
  4. 字符串转化成ascii值
  5. 十进制转为十六进制
  6. 使用一个json字符串来作为被解析对象
  7. 获取当前屏幕显示的viewcontroller
  8. 获取手机网络IP地址以及手机硬件的一些信息
  9. 隐藏iOS导航条底部与self.view的分界线的简单方法
  10. 检测当前UIScrollView的滑动方向来做出相应的处理
  11. 题目 一条聊天消息中,常用“[字符]”的方式标识一个表情,请分离消息中表情字符串”[字符]”并存入数组(c或者object-c都可以)
    消息为:“hello[aa]iphone[bb]ios[cc]” 结果为:hello,[aa],iphone,[bb],ios,[cc] (题目来源于QQ-iOS交流群,解答来源于一个学习demo)
  12. 需求:远程或者本地推送的通知栏通知,在不点击的情况下,进入app指定界面后,通知自动消失;例如腾讯新闻,推过来的新闻通知不去点击,直接进入app,找到对应新闻,这时通知栏的通知自动消失

内容

1. 如果要移除一个 UIView 的所有子视图,SDK 里没有 remove all 之类的方法。可以用 for loop 循环调用 – removeFromSuperview 来移除

例如:
for(UIView *view in [self.view subviews])
{
   [view removefromsuperview]
}
或者    
[view.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)];

2. 怎样把一个字典的数据添加到另一个字典中

//创建一个包含其他字典的字典:
[NSDictionary dictionaryWithDictionary:sourceDict]
//将其他字典的内容添加到目标字典:
[destinationDict addEntriesFromDictionary:sourceDict]
//将一个字典中的velue和key添加到另外一个字典中
NSDictionary *dic4=[NSDictionary dictionaryWithObject:@"v6" forKey:@"k6"];
        [mutableDic addEntriesFromDictionary:dic4];
        NSLog(@"MutableDic%@",mutableDic);

3. 获取某个字符在字符串中最后一个的位置

(1) 通过查找的方式来(这方式适合所有格式的子符串,推荐使用)

NSString *newStr = @"AbdcdddccddA00";
    NSString *temp = nil;
    for(int i =0; i < [newStr length]; i++)
    {
        temp = [newStr substringWithRange:NSMakeRange(i, 1)];
        if ([temp isEqualToString:@"A"]) {
            NSLog(@"第%d个字是:%@", i, temp);
        }
    }

(2) 通过遍历字符的方式遍历字符串(只适合不包含中文的字符串)

NSString *str = @"Abdcdddccdd00";
    for(int i = 0; i < [newStr length]; i++)
    {
        unichar temp = [str characterAtIndex:i];
        if (temp == 'A') {
            NSLog(@"第%d个字符是:%c", i, temp);
        }
    } 

应用实例:需求在一个原图的链接后面加上尺寸限制
如图片链接http://img3.imgtn.bdimg.com/it/u=4271053251,2424464488&fm=21&gp=0.jpg
将其改变为
http://img3.imgtn.bdimg.com/it/u=4271053251,2424464488&fm=21&gp=0_100x100.jpg

+ (NSMutableString *)getImageUrlHadChangedWith:(NSString *)imgUrl withSizeString:(NSString *)sizeStr{
    NSMutableString *imageUrl = [NSMutableString stringWithString:imgUrl];
    NSInteger location = [NSString getLastLocationWtihCharStr:@"." fromString:imageUrl];
    [imageUrl insertString:sizeStr atIndex:location];
    return imageUrl;
}

//根据传入的字符串例如@“,”查找出其最后的一个位置在哪里
+ (NSInteger)getLastLocationWtihCharStr:(NSString *)charStr fromString:(NSString *)originalString {
    NSInteger location = 0;
    NSString *temp = nil;
    for(int i = 0;i < originalString.length; i ++) {
        temp = [originalString substringWithRange:NSMakeRange(i, 1)];
        if ([temp isEqualToString:charStr]) {
            //NSLog(@"第%d的字是:%@",i ,temp);
            location = i;
        }
    }
    return location;
}

4.字符串转化成ascii值(加密方法)

NSString *string = @"abc中国123";
    for (int i=0 ;i

5.十进制转为十六进制(加密方法)

-(NSString *)ToHex:(long long int)tmpid
{
    NSString *nLetterValue;
    NSString *str =@"";
    long long int ttmpig;
    for (int i = 0; i<9; i++) {
     ttmpig=tmpid%16;
    tmpid=tmpid/16;
    switch (ttmpig)
    {
        case 10:
            nLetterValue =@"A";break;
        case 11:
            nLetterValue =@"B";break;
        case 12:
            nLetterValue =@"C";break;
        case 13:
            nLetterValue =@"D";break;
        case 14:
            nLetterValue =@"E";break;
        case 15:
            nLetterValue =@"F";break;
        default:nLetterValue=[[NSString alloc]initWithFormat:@"%i",ttmpig];       
    }
        str = [nLetterValue stringByAppendingString:str];
        if (tmpid == 0) {
            break;
        }

    }
    return str;
}

6. 使用一个json字符串来作为被解析对象

NSString *jsonstring = @"[{\"age\":18,\"book\":{\"price\":23.2,\"title\":\"booooooook1\"},\"name\":\"samyou\"},{\"age\":22,\"book\":{\"price\":21,\"title\":\"booooooook2\"},\"name\":\"samsam\"}]";
//转换为nsdata为了模拟从http得到的json数据类型
NSData *data = [jsonstring   dataUsingEncoding:NSUTF8StringEncoding];
//如果json串最外层是jsonarray则用mutableObjectFromJSONData,返回NSArray,否则用objectFromJSONData,返回NSDictionary
NSArray *arr = (NSArray *)[data  mutableObjectFromJSONData];
NSLog(@"count=%d",arr.count);
for(int i=0;i

7. 获取当前屏幕显示的viewcontroller

- (UIViewController *)getCurrentVC
{
        UIViewController *result = nil;
 
        UIWindow * window = [[UIApplication sharedApplication] keyWindow];
        if (window.windowLevel != UIWindowLevelNormal)
            {
                    NSArray *windows = [[UIApplication sharedApplication] windows];
                    for(UIWindow * tmpWin in windows)
                        {
                                if (tmpWin.windowLevel == UIWindowLevelNormal)
                                    {
                                            window = tmpWin;
                                            break;
                                        }
                            }
                }     
        UIView *frontView = [[window subviews] objectAtIndex:0];
        id nextResponder = [frontView nextResponder];
           
        if ([nextResponder isKindOfClass:[UIViewController class]])  
                result = nextResponder;  
        else 
                result = window.rootViewController;         
        return result;  
}

8. 获取手机网络IP地址以及手机硬件的一些信息

http://blog.csdn.net/itianyi/article/details/44917583

9. 隐藏iOS导航条底部与self.view的分界线的简单方法

设置背景图片
self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
加上下面代码可以取消导航下边的线,此方法也可以使用于tabbar
self.navigationController.navigationBar.shadowImage = [[UIImage alloc] init];
或者
[self.navigationController.navigationBar setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];
self.navigationController.navigationBar.shadowImage = [[UIImage alloc] init];

10.检测当前UIScrollView的滑动方向来做出相应的处理

有时候我们需要检测当前UIScrollView的滑动方向来做出相应的处理,可以借助UIScrollView的delegate函数来实现,
下面的例子可以检测到UIScrollview当前是向上滑动还是向下滑动:

int _lastPosition;    //A variable define in headfile  
- (void)scrollViewDidScroll:(UIScrollView *)scrollView{  
    int currentPostion = scrollView.contentOffset.y;  
    if (currentPostion - _lastPosition > 25) {  
        _lastPosition = currentPostion;  
        NSLog(@"ScrollUp now");  
    }  
    else if (_lastPosition - currentPostion > 25)  
    {  
        _lastPosition = currentPostion;  
        NSLog(@"ScrollDown now");  
    }  
}  

//25 可以是任意数字,可根据自己的需要来设定。

11. 题目 一条聊天消息中,常用“[字符]”的方式标识一个表情,请分离消息中表情字符串”[字符]”并存入数组(c或者object-c都可以)

消息为:“hello[aa]iphone[bb]ios[cc]” 结果为:hello,[aa],iphone,[bb],ios,[cc] (题目来源于QQ-iOS交流群,解答来源于一个学习demo)

//关于表情的一些宏定义
#define FACE_NAME_HEAD  @"["
// 表情转义字符的长度( “[”占1个长度,xx占2个长度,共4个长度 因为结尾还有一个"]")
#define FACE_NAME_LEN   4
+ (void)getMessageRange:(NSString*)message :(NSMutableArray*)array {
    NSRange range = [message rangeOfString:FACE_NAME_HEAD]; //找到是否有表情这个头的位置“[”
    //判断当前字符串是否存在表情的转义字符串
    if ( range.length > 0 ) {//存在表情
        if ( range.location > 0 ) {//不是以表情开头的
            //传过来的array是空的   substringToIndex:从字符串的开头一直截取到指定的位置,但不包括该位置的字符
            [array addObject:[message substringToIndex:range.location]];
            //substringFromIndex:以指定位置开始(包括指定位置的字符),并包括之后的全部字符
            message = [message substringFromIndex:range.location];
            if ( message.length > FACE_NAME_LEN ) {
                [array addObject:[message substringToIndex:FACE_NAME_LEN]];
                message = [message substringFromIndex:FACE_NAME_LEN];
                [self getMessageRange:message :array];
            } else
                // 排除空字符串
                if ( message.length > 0 ) {
                    [array addObject:message];
                }
        }else {//是以表情开头的
            if ( message.length > FACE_NAME_LEN ) {
                
                [array addObject:[message substringToIndex:FACE_NAME_LEN]];
                
                message = [message substringFromIndex:FACE_NAME_LEN];
                [self getMessageRange:message :array];
            }else
                // 排除空字符串
                if ( message.length > 0 ) { 
                    [array addObject:message];
                }
        }
    }
    else {
        [array addObject:message];
    }  
}

12.需求:远程或者本地推送的通知栏通知,在不点击的情况下,进入app指定界面后,通知自动消失;例如腾讯新闻,推过来的新闻通知不去点击,直接进入app,找到对应新闻,这时通知栏的通知自动消失

解决办法:在appdelegate文件中的app到激活状态的方法里加两行代码

- (void)applicationDidBecomeActive:(UIApplication *)application {
    [UIApplication sharedApplication].applicationIconBadgeNumber = 1;
    [UIApplication sharedApplication].applicationIconBadgeNumber = 0;
}

你可能感兴趣的:(iOS 实用代码段(一))