上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页
摘要: I have added a UIImagePickerController to a UIViewController. I have assigned the UIImagePickerControllerDelegate to that UIViewController.When I try to domyPicker.delegate = self;Xcode gifts me with this message: warning: assigning to id from incompatible type 'RootViewController *'Then I a 阅读全文
posted @ 2013-10-11 14:01 如来藏 阅读(679) 评论(0) 推荐(0) 编辑
摘要: 这个一般是证书设置的问题,在build settings中找到 Code Signing->Code Signing Identity修改成有效的证书即可 阅读全文
posted @ 2013-10-11 10:09 如来藏 阅读(1487) 评论(0) 推荐(0) 编辑
摘要: 不使用navigationbar的情况下AnnounceViewController *pushView = [[AnnounceViewController alloc]init];pushView.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;[self presentViewController:pushView animated:YES completion:nil];- (void)goback_button_clicked{ // [self dismissModalViewControllerAnimate 阅读全文
posted @ 2013-09-16 16:22 如来藏 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 1,基本概念CGPoint{x,y};空间中的位置,通过x和y坐标定义CGSize{width, height}; 大小,通过宽度和高度定义CGRect{origin, size};位置和大小,通过x,y坐标和高度,宽度定义2,位置和大小定义bounds(origin,size)是UIView自身的坐标frame(origin,size)是父UIView(superview)的坐标,对于子uiview来说就是相对于父uiview的坐标了center是UIView中心在父UIView(superview)的坐标bounds, frame, center相互关联,一个改变,其他的都会跟着自动更新遵 阅读全文
posted @ 2013-09-13 15:54 如来藏 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 针对这个错误,先选中项目--Targets--Build Settings-code sign identity-看看debug选项是否选中了 developer的证书。如果调试证书没问题,打开Organizer面板,看一下设备的 Provisioning Profiles有没有对应的provision文件,么有的话导入之,再次调试,就没问题了。如果import时发现本地的provision文件导入出错,哪么可能是你当前的developer证书已经被revoke掉了,登录developer.apple.com看一下证书是否无效了如果无效了,点击这一行,edit如果你的设备没有被勾选,千万记得要 阅读全文
posted @ 2013-09-11 14:32 如来藏 阅读(358) 评论(0) 推荐(0) 编辑
摘要: I could solve it erasing an application that I had previously uploaded using the same Bundle Identifier (xcode get's confused doing the chmod). Try checking the log from xCode Organizer (Your device's Name -> Console) you should get information from that log. Good luck!即同一个bundle identifi 阅读全文
posted @ 2013-09-11 14:24 如来藏 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 如果不是com. sensoSource.VoiceRecorder,在xxx-info.plist里Bundle identifier里替换成你的证书名xxx是你的工程名在Bundle identifier中替换成证书名即当时的app id的名字 阅读全文
posted @ 2013-09-11 14:22 如来藏 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 对于真机调试,首先要在苹果网站上注册APP ID,以及购买iPhone Develop Program(iDP) 开发者授权,99美元。然后要创建证书请求CSR,创建步骤如下:设置OCSP和CRL为关闭状态。Mac OS 中,打开应用程序,找到钥匙串访问(Keychain Access)工具打开主菜单-证书助理(Certificate Assistant)-从证书代理请求证书(Request a Certificate From a Certificate Authority)输入iDP注册时的email,用户名自定义,选择“存储到磁盘”,选择‘Let me specify key pair 阅读全文
posted @ 2013-09-11 14:18 如来藏 阅读(595) 评论(0) 推荐(0) 编辑
摘要: 1.应用程序->实用工具->keychain Access->操作如图12.将上图导出的证书、AppleWWDRCA.cer、mythlinkDeveloper.mobileprovision一起发送给你需要共享的用户。3.AppleWWDRCA.cer这个证书很重要,因为没有这个证书的话会出现以下错误This certificate was signed by an unknown authority或者中文的 此证书由末知颁发机构签名 错误。4.如果还有问题 certificate the more 这样的问题那应该是,你有多个开发证书造成冲突了,删除你重复的证书,再编译 阅读全文
posted @ 2013-09-10 17:49 如来藏 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 遵循规则:构造先父类后子类析构先子类后父类所以,自定义的init函数需要首先[super init....] dealloc中[super dealloc]却是放在最后的- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil{ self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self;}- (void)deallo 阅读全文
posted @ 2013-09-10 16:58 如来藏 阅读(193) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页