`
lizhuang
  • 浏览: 904361 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
在做一个功能的时候,遇到了这个问题。这里记录一下。 可滚动视图:UIScrollView,UITableView(是UIScrollView的子类)。 如果有的童鞋还是不理解,这个滚动视图,那么引一句网上的说法:      就像两张重叠在一起的纸,上面 ...
要使用 AVAudioPlayer 的对象播放文件,你只需为其指定一个音频文件并设定一个实现了AVAudioPlayerDelegate 协议的 delegate 对象。 初始化; 1:initWithData:error:他使用一个指向内存中一些音频数据的NSData对象. 这种形式对于已经把音频数据下载到缓冲区的情形很有用. initWithContentsOfURL:error NSURL 它只能从file://格式的URL装入音频数据不支持流式音频及HTTP流和网络流 /获取文件路径 NSString *soundFilePath =  [[NSBundle mainBundle ...
if ([ _searchBar respondsToSelector: @selector (barTintColor)]) { float iosversion7_1 = 7.1 ; if (IOS_VERSION >= iosversion7_1) { //iOS7.1 [[[[_searchBar . subviews objectAtIndex : 0 ] subviews ] objectAtIndex : 0 ] removeFr ...
 //方法2 iOS4.0版本以下的可以使用该方法获取url C代码   - (NSURL *)applicationDocumentsDirectory_Old {       NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);//程序文件夹主目录  
http://www.56.com/u35/v_MTAyMjE1ODA4.html   老师讲的挺好
  #import "NSString+Pinyin.h" @implementation NSString (Pinyin) - (NSString *)generatePinyin { NSMutableString *ms = [[NSMutableString alloc] initWithString:self]; /* if (CFStringTransform((__bridge CFMutableStringRef)ms, 0, kCFStringTransformMandarinLatin, NO) ...

python mac 升级

  mac lion自带的python是2.7版本的,有点儿低,要使用一些应用的时候还需要3.3以上的,这时可以用以下的方法更新mac自带的python。 先去python的官网下载最新的python,并安装好。 现在要删除mac自带的python,如下: sudo rm -R /System/Library/Frameworks/Python.framework/Versions/2.7  把第一步里安装好的Python目录移到原本系统所持有的目录位置。  sudo mv /Library/Frameworks/Python.framework/Ve ...
  openssl使用的是macos系统自带的版本,关键点是不同直接使用ios设备打开https的链接,需要将证书发到系统的mail里,安装到设备, 如果命令执行不成功,用sudo执行。 1.生成服务器的私钥 openssl genrsa -out server.key 1024 2.生成签署申请(注意除Common Name以外可以为空,Common Name必须为服务器的ip或域名) openssl req -new -key server.key -out server.csr 3.生成CA私钥 openssl genrsa  -out ca.key 1024  4.利用CA的私钥产生 ...
  [value replaceOccurrencesOfString:@"[\\(\\s\\)-]"                                    withString:@""                                       options:NSRegularExpressionSearch                                           range:NSMakeRange(0, value.length)];   去空格,括号,横线
 NSMutableString *temp = [@"1234567" mutableCopy];     [temp replaceOccurrencesOfString:@"[1236]" withString:@"" options:NSRegularExpressionSearch range:NSMakeRange(0, temp.length)];     NSLog(@"%@", temp);
NSUInteger and NSInteger are different lengths on 32-bit (int) and 64-bit (long). In order for one format specifier to work for both architectures, you must use a long specifier and cast the value to long: TypeFormatSpecifierCast------------------------
如图所示:各种尺寸  
转自:http://www.cnblogs.com/qq78292959/archive/2012/07/16/2593651.html 这个证书可以通过我们前面生成的两个文件中得到。 1、将aps_developer_identity.cer转换成aps_developer_identity.pem格式 openssl x509 -in aps_developer_identity.cer -inform DER -out aps_developer_identity.pem -outform PEM  2、将p12格式的私钥转换成pem openssl pk ...
小弟查了很多地方的关于iOS程序拨打电话,大都不全,今天我总结了三种方法,各有不同,拿来给大家分享,希望给大家有所帮助 1,这种方法,拨打完电话回不到原来的应用,会停留在通讯录里,而且是直接拨打,不弹出提示 NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"186xxxx6979"];     //            NSLog(@"str======%@",str); [[UIApplication sharedApplication ...
// //  UIImageAdditions.m //  Newspress // //  Created by Kyle Van Essen on 10-04-10. //  Copyright 2010 Vibealicious. All rights reserved. // #import "UIImageAdditions.h" @implementation UIImage (Additions) +(void)drawNinePartImage:(NSArray *)images inRect:(CGRect)rect {     CGPoint or ...
Global site tag (gtag.js) - Google Analytics