首页 软件开发 代码片段 objective-c ( Page 12 )

objective-c 628

#Objective-C
iOS关于UITextView的基本用法属性和协议

- (void)UI{ //UITextView(使用须遵守UITextViewDelegate协议) UITextView *textView = [UITextView new…

2015-08-30 408

#Objective-C
随机产生一个汉字

NSInteger i = arc4random()%(0x9fa5-0x4e00 + 1) + 0x4e00; NSString * unicodeStr = [NSString…

2015-08-30 981

#Objective-C
webview 注入js 方法

//“jsString”注入的js代码 [_webView stringByEvaluatingJavaScriptFromString:jsString]; //“imageCl…

2015-08-29 356

#Objective-C
Swift版获取月份的最后一天

//这个月的最后一天 func getLastDay(var year:Int,var month:Int) -> Int?{ var dateFormatter:NSDat…

2015-08-25 495

#Objective-C
基站定位

/** * 初始化定位 */ - (void)paepareLocation { self.locationManager = [[CLLocationManager alloc]…

2015-08-24 488

#Objective-C
基于Swift与EasyIOS的UICollectionView演示代码

// // ViewController.swift // easySwift // // Created by zhuchao on 14-7-15. // Copyright …

2015-08-23 889

#Objective-C
毛玻璃效果iOS

// // UIImageView+LBBlurredImage.h // LBBlurredImage // // Created by Luca Bernardi on 11/…

2015-08-22 265

#Objective-C
MJExtension续作,一键ORM第二季

MJExtension续作,一键ORM第二季 https://github.com/nsdictionary/CoreArchive

2015-08-22 639

#Objective-C
聊天框架,利用环信服务,实现的单聊群聊功能,音乐分享,网页分享扩展

id<IEMMessageBody> messageBody = [bodies firstObject]; chatContentModel.messageBody …

2015-08-19 214

#Objective-C
mac 利用终端显示 隐藏文件

打开终端输入如下指令 便可 看到隐藏文件 用于svn 替换图片时使用 defaults write com.apple.finder AppleShowAllFiles -bool…

2015-08-17 759

#Objective-C
高仿网易照片浏览器,支持本地及网络相册!

- (IBAction)showAction:(id)sender { //本地图片展示 [self localImageShow]; //展示网络图片 // [self netw…

2015-08-16 422
1 10 11 12 13 14 53