#pragma mark - 这是私有方法,尽量不要再方法中直接使用属性,因为一般来说属性都是和界面关联的,我们可以通过参数的方式来使用属性
#pragma mark post登录方法
-(void)loginWithPostWithName:(NSString *)userName pwd:(NSString *)pwd
{
//1确定地址NSURL
NSString *url...
分类:
移动开发 时间:
2014-06-28 06:55:39
阅读次数:
261
+(UIImage *)getImage:(NSString *)videoURL{AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[NSURL fileURLWithPath:videoURL] options:nil];AVAssetIma...
分类:
移动开发 时间:
2014-06-27 13:15:09
阅读次数:
243
网络请求的步骤:
//1确定地址NSURL
NSString *urlString = [NSString stringWithFormat:@"www.baidu.com"];
NSLog(@"%@",urlString);
//url中,如果包含中文字符需要转换成带百分号的格式,提供给服务器解码(如果服务器用的是utf-8)。
urlString = [u...
分类:
移动开发 时间:
2014-06-27 10:25:02
阅读次数:
236
#pragma mark - 这是私有方法,尽量不要再方法中直接使用属性,因为一般来说属性都是和界面关联的,我们可以通过参数的方式来使用属性
#pragma mark post登录方法
-(void)loginWithPostWithName:(NSString *)userName pwd:(NSString *)pwd
{
//1确定地址NSURL
NSString *url...
分类:
移动开发 时间:
2014-06-27 07:42:35
阅读次数:
287
[formData appendPartWithFileURL:[NSURL fileURLWithPath:info.voice_networkPath] name:@"voice.amr" fileName:@"voice.amr" mimeType:@"" error:nil]; [fo...
分类:
其他好文 时间:
2014-06-26 21:07:10
阅读次数:
225
- (BOOL)appendPartWithFileURL:(NSURL *)fileURL name:(NSString *)name fileName:(NSString *)fileName mimeType:(NSString *)m...
分类:
其他好文 时间:
2014-06-26 19:30:06
阅读次数:
171
NSString的常用方法创建一个新字符串并将其设置为 path 指定的文件的内容,使用字符编码enc,在error上返回错误+ (id)stringWithContentsOfURL:(NSURL *)url encoding:(NSStringEncoding)enc error:(NSErro...
分类:
其他好文 时间:
2014-06-25 14:37:29
阅读次数:
164
定义typedef void (^RFAudioBasicBlock) (void);typedef void (^RFAudioSuccessBlock) (BOOL flag);typedef void (^RFAudioSuccessDetailBlock) (BOOL flag, NSURL...
分类:
移动开发 时间:
2014-06-25 13:26:14
阅读次数:
187
下面是代码,注释也写得比较清楚:
//
// HttpDemo.h
// MyAddressBook
//
// Created by hherima on 14-6-23.
// Copyright (c) 2014年 chinasofti. All rights reserved.
//
#import
#import
@interface HttpDemo : NSObjec...
分类:
其他好文 时间:
2014-06-25 00:07:58
阅读次数:
190
1.发短信 实现打电话的功能,主要二种方法,下面就分别说说它们的优缺点。1.1.发短信(1)——URL // 直接拨号,拨号完成后会停留在通话记录中a、方法:NSURL *url = [NSURL URLWithString:@"sms://10010"];...
分类:
移动开发 时间:
2014-06-15 21:43:36
阅读次数:
378