摘要:
实现三个代理方法即可-(NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath { return @"删除"... 阅读全文
摘要:
关于Xcode7 Beta报错 simulator runtime is not available.Unable to open liblaunch_sim.dylib Try reinstalling Xcode or the simulator runtime.解决办法一、找到目标文件/App... 阅读全文
摘要:
- (void)setUpGroup2{ ILGroupItem *group = [[ILGroupItem alloc] init]; // 结束时间 ILSettingItem *endTime = [ILSettingItem itemWithImage:nil title... 阅读全文
摘要:
使用前提调用某个对象的,一个无参数的方法如[self.view resignFirstResponder]注意[self.view endEdting:YES]就不行,要是无参数的 阅读全文
摘要:
虽然xib内部启用了自动布局,但是当xib放入外界,xib自身的autoresizing是存在的 阅读全文
摘要:
#define SXLog(FORMAT, ...) fprintf(stderr,"file --\t%s\nline --\t%d\nmethd --\t%s\noutput --\t\n\n%s\n",[[[NSString stringWithUTF8String:__FILE__... 阅读全文
摘要:
0、需要终端生成的aps.cer和aps.p12文件。1、把.cer的SSL证书转换为.pem文件,执行命令:openssl x509 -in aps.cer -inform der -out PushChatCert.pem2、把私钥aps.p12文件转化为.pem文件:openssl pkcs1... 阅读全文
摘要:
按 Ctrl+` 调出console粘贴以下代码到底部命令行并回车:import urllib2,os;pf='Package Control.sublime-package';ipp=sublime.installed_packages_path();os.makedirs(ipp) if not... 阅读全文
摘要:
- (BOOL) isEmail { NSString *emailRegEx = @"(?:[a-z0-9!#$%\\&'*+/=?\\^_`{|}~-]+(?:\\.[a-z0-9!#$%\\&'*+/=?\\^_`{|}" @"~-]+)*|\"(?:[\\x01-\... 阅读全文