iOS
yue214
不能为人类服务的技术谈不上什么技术不能够自己掌握的财富谈不上什么财富
展开
-
iOS 图集
实现这么一个功能用这样一个思想, 这个图集的URL保存在数组中,然后数组的index传过去,数组也传过去,拿到图集的当前 index取下一个的时候取下一张图片 ,代码正在研究中~~~获取网络图片 可应用SDWebImage 里提供的方法 setImageWithURL: [imageView setImageWithURL:[_imag原创 2013-04-02 20:36:09 · 645 阅读 · 0 评论 -
Undefined symbols for architecture i386或者armv7: “_OBJC_CLASS_$_XXX”
Undefined symbols for architecture i386:“_OBJC_CLASS_$_XXX”, referenced from:objc-class-ref in XXXld: symbol(s) not found for architecture i386clang: error: linker command fa转载 2013-07-25 08:45:16 · 1163 阅读 · 0 评论 -
iOS 之 使用百度地图 (删除地图页面所有自己添加的标注)
思路是 首先获取到这些标注 , 然后使用删除方法进行删除 NSArray *annArray = [[NSArrayalloc]initWithArray:_mapView.annotations]; NSLog(@"__-------annarray = %@",annArray);annotations 是地图页面的属性原创 2013-08-16 16:22:00 · 3474 阅读 · 0 评论 -
iOS 从subview 转换到主视图的方法
// 在self.view 中添加subView [self.view addSubview:scrollView];[self.view bringSubviewToFront:scrollView];//此方法使添加的subview 变成主视图原创 2013-10-12 16:20:28 · 632 阅读 · 0 评论 -
由使用tag 0 引发的问题
如果我们用了一个父View,上面放了多个子view, 每个子view都通过从0开始的Tag值来进行标志,以便于后期在像View上直接使用viewWithTag:tag值来取各个子View而在用[父view viewWithTag:0]取到的view, 发现不是子view, 而是这个父view, 查找资料发现 有苹果文档上提到过一次,tag值较小的,如0-100为苹果保留使用, 而0原创 2013-10-17 11:59:33 · 925 阅读 · 0 评论 -
iOS ARC机制中的警告以及解决办法
Capturing'request' strongly in this block is likely to lead to a retain cycle此警告会在__block ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];[request setPostValue:原创 2013-03-28 19:36:53 · 716 阅读 · 1 评论 -
在app运行的情况下接收推送信息
更多 在app运行的情况下接收推送信息当你的iPhone收到推送信息后到底会发生什么呢?总共有三种可能性:app在前台运行. 接收到推送信息时屏幕上不会有任何显示,也不会有提示音,但你的app delegate会收到这个推送信息。你可以在这里加入代码来处理接收到的信息。app不在前台运行。iPhone可能停留在主界面或者另一个app正在运行.一个提示窗口会弹出,可能伴随着提转载 2013-05-07 14:09:09 · 1354 阅读 · 0 评论 -
iOS开发键盘高度的处理
IPAD键盘高度:portrait 264 landscape 352.iPhone键盘高度: Portrait 216 Landscape 140NSNotificationCenter:键盘出现、消失时的通知UIKIT_EXTERNNSString *const UIKeyboardWillShowNotification;UIKIT_转载 2013-11-12 16:57:07 · 676 阅读 · 0 评论 -
UITextView使用笔记
UITextView初始化: UITextView *inputContextTF = [[UITextViewalloc] initWithFrame:CGRectMake(ContactPhoneImage.frame.origin.x, ContactPhoneImage.frame.origin.y+ContactPhoneImage.frame.size.h原创 2013-11-12 16:46:02 · 1046 阅读 · 0 评论 -
iOS消息推送的一些事情
在ios系统中,app应用程序无法在后台完成较多的任务,仅仅允许程序做一些有限的任务(如音视频播放、地理位置信息、voip)。然而,如果你想做一些有趣的事情,并且告知用户,甚至用户没有使用你的app应用程序,如收到一条微博信息,自己心爱的球队夺冠又或者晚餐已经准备好了等信息时,由于你的app应用程序没有运行(或者程序进入后台,进程被挂起),因此,可能无法接收到相关的消息。原创 2013-11-27 15:51:35 · 877 阅读 · 0 评论 -
nested push animation can result in corrupted navigation bar
我们登录成功后只有一个viewcontroller,并且为导航视图。所以可以,使用popToRootViewControllerAnimated先跳转到根视图,然后在从根视图push到其他视图。但是却遇到了nested push animation can result in corrupted navigation bar Finishing up a navigatio原创 2013-12-24 16:42:03 · 961 阅读 · 2 评论 -
iOS上传视频道优酷视频文件MD5的获取等
获取文件MD5 值,使用OC自带工具,使用时候需要#import ,然后调用传值- (NSString*) md5:(NSString*) path{ NSFileHandle *handle = [NSFileHandlefileHandleForReadingAtPath:path]; if( handle== nil ) {原创 2014-01-10 23:34:26 · 1612 阅读 · 0 评论 -
iOS 修改textField的placeholder的字体颜色
修改 UITextfield 的 Placeholder字体的颜色 方法如下: [userPasswdTFsetValue:[UIColorcolorWithRed:0.26green:0.26blue:0.04alpha:0.9]forKeyPath:@"_placeholderLabel.textColor"];原创 2014-01-26 12:33:49 · 885 阅读 · 0 评论 -
[讨论]iOS 开发之使用XIB/StoryBoard 和 使用代码
最近讨论了在开发应用过程中使用XIB/SB 和使用代码的一些问题 。 观点各有千秋 。 使用xib布局呢 ,效率高,用代码写控件布局,时间花销有点大。个人一直用的是代码开发~ , 写控件布局着实是一件令人头痛的事情 。以下收集了一些观点 , 供参考:刘洪峰,07年开始写码至今,擅长iOS开发.代码。基本不用xib,storyboard没用过原创 2014-02-26 11:34:13 · 969 阅读 · 0 评论 -
利用 itms-services 协议,通过网站来发布ipa应用的一些问题
无法安装应用程序,因为www.xindaoapp.com的证书无效 的 解决方法。iOS7.1 升级之后通过Safari 点击以下超链接会提示『无法安装应用程序,因为www.xindaoapp.com的证书无效』itms-services://?action=download-manifest&url=http://www.xindaoapp.com/manifes原创 2014-03-17 13:03:00 · 1524 阅读 · 0 评论 -
GoogleMap API for iOS 使用 之 动点画线
所谓的动点画线,就是根据用户的当前位置,获取到的经纬度,画出移动轨迹。画线方法如:-(void) loadRoute{ GMSPolylineOptions *options = [GMSPolylineOptionsoptions]; GMSMutablePath *path = [GMSMutablePathpath]; //_原创 2013-04-19 13:45:28 · 1214 阅读 · 1 评论 -
iOS在使用Label时候的自适应问题
iOS 在使用UILabel控件时候会遇到一些问题,有些时候 需要显示的wen zi原创 2014-04-29 10:12:08 · 960 阅读 · 0 评论 -
在web页面设置横屏显示
CGAffineTransform at =CGAffineTransformMakeRotation(M_PI/2);//顺时钟旋转90 at =CGAffineTransformTranslate(at,100,0); [webView setTransform:at];原创 2013-07-31 15:59:36 · 2306 阅读 · 0 评论 -
file is universal (3 slices) but does not contain a(n) armv7s slice: /Users/myyue214/Downloads/Q
file is universal (3 slices) but does not contain a(n) armv7s slice: /Users/myyue214/Downloads/QR code/QR code/ZBarSDK/libzbar.a for architecture armv7s在真机运行的时候,遇到这个不支持三方库的问题 。。原创 2013-06-24 10:04:56 · 1418 阅读 · 0 评论 -
iOS 使用Zbar 二维码扫描的时候, 出现中文乱码
获取的数据 ,默认的编码格式SJIS,如果zbar 程序不能判断的编码的情况下 , 也是默认的SJIS。 if ([symbol.datacanBeConvertedToEncoding:NSShiftJISStringEncoding]) { enString = symbol.data ; en原创 2013-06-24 17:49:57 · 1134 阅读 · 0 评论 -
SVProgressHUD的使用
添加SVProgressHUD.h .m文件。然后添加QuartzCore framework 参考:https://github.com/myyue214/SVProgressHUD原创 2013-04-03 20:31:13 · 870 阅读 · 0 评论 -
iOS中用ShareSDK一键分享方法
导人ShareSDK 。视图一键分享 加入如下代码 ,设置ActionSheet代理- (void)oneKeyShareButtonClickHandler:(UIButton *)sender{ //定制一键分享列表 NSArray *shareList = [ShareSDK getShareListWithType: ShareTypeSinaWeibo, Share原创 2013-04-08 10:20:50 · 2135 阅读 · 0 评论 -
简单的iOS相册
原帖地址 : http://blog.csdn.net/cubepeng/article/details/7901229#t0 1.首先我们来创建一个UIScrollView。[html] view plaincopy_scrollView = [[UIScrollView alloc]initWithFrame:CG转载 2013-04-08 17:40:01 · 582 阅读 · 0 评论 -
iOS 时间戳转化为时间 时间转化为时间戳
NSTimeInterval time = [[NSDate date] timeIntervalSince1970]; //可以这样定义 NSLog(@"当前时间为%f", time); 打印出从1970年开始到现在的秒数. 可见time可以赋值给float类型 所以可以这样写: float a = time; 这样就可以很容易的到两个时间点中间相差多少秒。- (voi原创 2013-04-11 13:25:35 · 1656 阅读 · 2 评论 -
googleMap sdk for iOS的一些使用 介绍问题
https://developers.google.com/maps/documentation/ios/start首先下载Google Map的sdk for iOS 申请 APIKeyLaunch Xcode and either open an existing project, or create a new project.If you're new to原创 2013-04-19 13:36:46 · 1292 阅读 · 1 评论 -
iOS NSTimer 定时器的使用
调用一次计时器方法:myTimer = [NSTimer scheduledTimerWithTimeInterval:1.5 target:self selector:@selector(handeltime) userInfo:nil repeats:NO];//不重复 只调用一次timer运行一次就会自动停止重复调用计时器方法: repeats: YES;原创 2013-04-19 16:59:06 · 817 阅读 · 0 评论 -
iOS 字符串 向数组转换
将字符串切割成数组 NSString *a = [[NSString alloc] initWithString : @"蛋白质,黄瓜,火龙果,鸡蛋,茄子" ]; NSArray *b = [a componentsSeparatedByString:@","]; NSString *a3 = [b objectAtIndex:2]; N原创 2013-05-16 09:42:51 · 948 阅读 · 0 评论 -
iOS时间格式的相互转换
NSString *_starTime = @"20130516154554";NSDateFormatter *dateFormat = [[NSDateFormatteralloc]init]; [dateFormatsetDateFormat:@"yyyyMMddHHmmss"]; // 格式要与ldate的一样,否则得到的是null值。原创 2013-05-16 16:57:06 · 783 阅读 · 0 评论 -
用Application Loader 上传到app store 的那些事
上传应用到App Store原创 2013-05-03 19:30:52 · 914 阅读 · 1 评论 -
iOS 用户登录 sh1加密
部分代码如下:#pragma mark 登录-(void)logInView:(id)sender{ NSLog(@"登录"); UITextField *userName = (UITextField *)[self viewWithTag:TagWithUserName]; UITextField *password = (UITextField原创 2013-05-22 09:20:03 · 1153 阅读 · 0 评论 -
iOS中的网络 post 提交方法
//post提交的参数,格式如下: //参数1名字=参数1数据&参数2名字=参数2数据&参数3名字=参数3数据&... NSString *post = [NSString stringWithFormat:@"m=check_user_login_info&f=itemgarden_iphone_app&u=%@&s=%@",self.us_email,self.us_passw转载 2013-05-09 10:27:34 · 983 阅读 · 0 评论 -
iOS 上传文件到服务器
-(void)UploadAllRecords:(id)sender{ NSUserDefaults* Defaults = [NSUserDefaults standardUserDefaults]; NSLog(@"Upload All Records..."); NSString *stepMsg = [NSString stringWithFormat:原创 2013-05-23 18:38:14 · 2146 阅读 · 0 评论 -
导航页面的 toolBar 定制barbuttonItem
[self.navigationController setToolbarHidden:NOanimated:YES];// UIBarButtonItem *one = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:nil action:nil];原创 2013-05-24 14:46:20 · 724 阅读 · 0 评论 -
根据URL app 页面跳转问题
跳转到app下载页面NSString *appID = @"888888"; // 用developer账户登陆itunes connect创建应用时会产生一个app idNSString *appURL = [NSString stringWithFormat:@"itms-apps://itunes.apple.com/app/id%@",appID];[[UIAppl原创 2013-05-15 11:06:43 · 776 阅读 · 0 评论 -
UITabBarItem 如何触发点击事件
在Tab Bar里放了 2个Item按钮但是UITabBarItem没有触发方法的属性 和方法,但是找到一种可以实现这个效果的在.h文件里加上后就可以调用下面的代理方法,再在viewDidLoad里加上 [tabBar setDelegate:self];就可以了#pragma mark -- UITabBarDelegate-(void)tabBar原创 2013-06-01 15:47:30 · 3162 阅读 · 0 评论 -
UIAlertView 视图弹出的一些效果的应用
在iPad 应用中, 判断用户是否登录 , 如果未登录 , 弹出警示框 , 带有登录按钮的, 在- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;这个方法中调用登录方法 , 弹出的登录窗口瞬时消失 。 这是什么问题呢 ? 或许这个登录的弹出界面,跟UIAl原创 2013-06-05 15:08:46 · 1122 阅读 · 0 评论 -
iOS获取当前网页的页面元素
iOS-获取当前网页的 url 和 title 和 html[编辑].h文件@property (strong,nonatomic)UIWebView *webView; @property (strong,nonatomic)NSString *currentURL; @property (strong,nonatomic)NSString *currentTitle;原创 2014-08-14 16:44:32 · 3763 阅读 · 0 评论