美文网首页
判断设备是ipad还是iphone

判断设备是ipad还是iphone

作者: 跬步千里_LenSky | 来源:发表于2016-06-24 03:44 被阅读455次

    可用于判断应用运行的设备是否是 iPad

    #define isPad (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)

    将string字符串转换为array数组

    NSArray  *array = [Str componentsSeparatedByString:@","];

    ==反向方法

    将array数组转换为string字符串

    NSString *tempString = [mutableArray componentsJoinedByString:@","];--分隔符

    stringByReplacingOccurrencesOfString:@" " withString:@""

    相关文章

      网友评论

          本文标题:判断设备是ipad还是iphone

          本文链接:https://www.haomeiwen.com/subject/vwjodttx.html