zoukankan      html  css  js  c++  java
  • Objective-C 常用代码

    这里会归纳一些在Objective-C开发中常用的代码 代码会慢慢增多  =)

    生成一定范围的随机数

    验证邮箱是否合法

    - (BOOL) validEmail:(NSString*) emailString {
          if([emailString length]==0){
             return NO;
          }
     
          NSString *regExPattern = @"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}";
     
          NSRegularExpression *regEx = [[NSRegularExpression alloc] initWithPattern:regExPattern       options:NSRegularExpressionCaseInsensitive error:nil];
          NSUInteger regExMatches = [regEx numberOfMatchesInString:emailString options:0 range:NSMakeRange(0, [emailString length])];
     
          NSLog(@"%i", regExMatches);
          if (regExMatches == 0) {
              return NO;
          } else {
              return YES;
          }
    }
    

      

    判断手机是否越狱

    +(BOOL)isJailbroken {
          NSString *filePath = @"/Applications/Cydia.app";
          if ([[NSFileManager defaultManager] fileExistsAtPath:filePath])
          {
                return YES;
          } else {
                return NO;
          }
    }

    or

  • 相关阅读:
    flink-cdc读取postgres报异常,没有发布表
    yum 安装高版本Git
    分布式存储FastDFS搭建
    ElasticSearch6.5.1集群部署
    CentOS7 OpenSSH编译安装升级
    K8S使用ceph实现持久化存储
    ceph分布式集群的搭建
    canal服务搭建
    MySQL-5.7.31的搭建
    基于CentOS7.6使用KubeOperator安装Kubernetes集群
  • 原文地址:https://www.cnblogs.com/pandas/p/4329379.html
Copyright © 2011-2022 走看看