
iOS
文章平均质量分 61
logcabin
这个作者很懒,什么都没留下…
展开
-
Custom HTTP Headers in iPhone UIWebView
Custom HTTP Headers in iPhone UIWebView 点击打开链接If you've done much coding for iPhones, you'll likely have come across the UIWebView class. It is what allows you to use an embeddable web br转载 2012-04-27 12:23:44 · 1531 阅读 · 0 评论 -
NSData 的几种加密方法
详见开源工程 Git.frameworkhttps://github.com/geoffgarside/Git.framework/tree/27a98dea8b7d245df9f9f57dc4f39ad711033093Source->Category->NSData->NSData+*.h/m原创 2012-04-16 10:28:29 · 1041 阅读 · 0 评论 -
Apple Push Notification Services Tutorial: Part 2/2
From: 点击打开链接This is a post by iOS Tutorial Team member Matthijs Hollemans, an experienced freelance iOS developer available for hire!This is the second part of a 2-part tutorial series on转载 2012-05-02 14:25:14 · 1851 阅读 · 0 评论 -
Apple Push Notification Services Tutorial: Part 1/2
From: 点击打开链接TweetIf you're new here, you may want to subscribe to myRSS feed or follow me onTwitter. Thanks for visiting! Learn how to add Push Notifications into your iPhone app!T转载 2012-05-02 11:35:47 · 1669 阅读 · 0 评论 -
编写push notification之服务器端发送通知(转)
From: http://www.cnblogs.com/iphone-crash/archive/2011/08/13/2137431.html在编写push notification之获取device token中拿到device token以后,需要把token字符串发送给应用的服务器端,即provider。provider将token号、通知内容、通知形式(比如是否转载 2012-05-03 17:06:01 · 1065 阅读 · 1 评论 -
iphone 录音与播放同时 音量问题
播放与录音同时开工: AVAudioSession *audioSession = [AVAudioSession sharedInstance];NSError *err = nil;[audioSession setCategory :AVAudioSessionCategoryPlayAndRecord error:&err];设置 Session播放的声原创 2012-07-08 15:54:27 · 1682 阅读 · 0 评论 -
How To Use UIView Animation Tutorial
How To Use UIView Animation TutorialTweetIf you're new here, you may want to subscribe to myRSS feed or follow me on Twitter. Thanks for visiting! Use animation to see what's inside this转载 2012-07-09 10:58:03 · 969 阅读 · 0 评论 -
iphone 获取音乐信息的例子
NSBundle* bundle = [NSBundle mainBundle]; NSString* path = [bundle bundlePath]; NSURL * fileURL=[NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/akon、be - you - with.mp3", path]];转载 2012-07-10 15:51:29 · 1804 阅读 · 1 评论 -
关于 App store 里的截图 在不同分辨率手机的sotre里与 pc的itunes store 里不一致的问题
不同分辨率的Device中 打开 app store里看到同一app的截图不一致的问题:截图的分辨率,建议用960x640 (高分) 否则会看到不同的截图。itunes store里与真机的sotre里截图显示不一致问题:方向 引起的 引用 Apple 的回复 :“Missing Screenshots on iPhone Store”“Th原创 2012-06-29 14:07:38 · 1011 阅读 · 0 评论 -
在ios中使用soundtouch库实现变声 2011-08-16 11:36:56
标签:iosiphone开发 soundtouch 变声技术 talkingtom原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://yarin.blog.51cto.com/1130898/640398 这篇文章是项目总结了。做了段时间的项目,过程中也遇到了很多麻烦,但是好在终于都解决了转载 2012-07-11 18:30:43 · 1223 阅读 · 0 评论 -
关于ios中编译ffmpeg0.9.2库
转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://yarin.blog.51cto.com/1130898/862591很多朋友在问如何在ios中编译ffmpeg库,虽说网上的教程很多,但是大部分都说按其操作,最后编译总是不成功,正好我最近的项目要用到ffmpeg,所以就再次编译了,同时在这里记下,方便需要参考的朋友。先说一下本次编译转载 2012-07-11 18:32:44 · 686 阅读 · 0 评论 -
iOS AVAudioPlayer 加载mp3 失败 错误: “OSStatus error 1954115647”
导致这个错误的原因比较多,大致是文件格式 ,文件完整性, 文件的码率等因素。文件的完整性,一个解决方案是,根据 mp3文件格式自己去解析 做完整性检查 。 另一个偷懒的办法是让AVAudioPlayer自己去检查。方法1NSString mp3 = [NSTemporaryDirectory() stringByAppendingPathComponent:@"test原创 2012-07-12 11:53:47 · 6263 阅读 · 0 评论 -
用iPhone修改及调试游戏作弊版教程【精华】
From: http://bbs.weiphone.com/read-htm-tid-672262.html看不懂的请飘过,不要继续。这不是给新手看的,也代表你不需要解决程序的修改问题。这些技巧不只用于游戏的修改。下載 Windows 工具Windows : winscp http://winscp.net/eng/download.php转载 2012-07-03 18:48:27 · 6630 阅读 · 1 评论 -
Unicode 特殊字符码表 U+25A0 to U+25FF
Unicode characters from U+25A0 to U+25FFName ChartNumberEntity (hex)Entity (decimal)CharacterDescriptionU+25A0■■■BLACK SQUAREU+25A1□□原创 2012-07-17 12:01:08 · 3015 阅读 · 0 评论 -
different addSubview behavior between iOS 4.3 and 5.0(viewWillAppear 不被调用)
这篇文章 说的很细 : http://stackoverflow.com/questions/7830830/ios-different-addsubview-behavior-between-ios-4-3-and-5-021 down vote favorite16while coding in iOS 4.3 bef转载 2012-07-25 15:24:56 · 1531 阅读 · 0 评论 -
ios 音乐合成(混合)
直接上代码了: 自己代码中的一段做为 例子: 仔细看应该能看明白。资源文件可以随便找两个音乐文件代替。- (void) setUpAndAddAudioAtPath:(NSURL*)assetURL toComposition:(AVMutableComposition *)composition start:(CMTime)start dura:(CMTime)dur原创 2012-08-13 17:15:54 · 7217 阅读 · 2 评论 -
AVFoundation + AssetWriter: Generate Movie With Images and Audio
AVFoundation + AssetWriter: Generate Movie With Images and Audiohttp://stackoverflow.com/questions/5640657/avfoundation-assetwriter-generate-movie-with-images-and-audio转载 2012-08-12 18:57:26 · 648 阅读 · 0 评论 -
iphone AudioStreamer
https://github.com/mattgallagher/AudioStreamer转载 2012-08-12 19:07:52 · 617 阅读 · 0 评论 -
audio sox
http://sox.sourceforge.net/Docs/Featureshttp://uberblo.gs/2011/04/iosiphoneos-equalizer-with-libsox-doing-effectshttp://uberblo.gs/2011/04/iosiphoneos-equalizer-with-libsox-making-it-a-f原创 2012-08-13 14:59:13 · 852 阅读 · 0 评论 -
ios 音频底层
http://hi.baidu.com/z_ikan/item/997b25d65c8c71c71a72b4e7原文地址: http://www.cocoachina.com/newbie/basic/2011/1122/3563.html 前几天搜索资料时发现一个网站:iPhone Core Audio Development,里面有iOS底层音频技术的几个源代码转载 2012-08-13 22:15:03 · 1155 阅读 · 0 评论 -
用 IDA Pro 破解【iPhone IPA 防破解版】教程
来自: http://bbs.weiphone.com/read-htm-tid-429111.html Patching Applications from Apple's AppStore with additional protection.pdf (2086 K) 下载次数:2014 IDA Pro 下载http://www.weiphone.com/thread-转载 2012-07-30 09:37:15 · 5105 阅读 · 0 评论 -
iOS/iPhoneOS Equalizer with libsox - making it a .framework
iOS/iPhoneOS Equalizer with libsox - making it a .frameworkFrom: http://uberblo.gs/2011/04/iosiphoneos-equalizer-with-libsox-making-it-a-frameworkSo i've spent the past few weeks with an issu转载 2012-08-14 18:42:53 · 825 阅读 · 0 评论 -
iOS/iPhoneOS Equalizer with libsox - doing some effects
FroM: http://uberblo.gs/2011/04/iosiphoneos-equalizer-with-libsox-doing-effectsToday i will show you how to do sound effects from within iOS using libsox.It is pretty straight forward, the cod转载 2012-08-14 18:47:00 · 848 阅读 · 0 评论 -
Nice & Easy iOS OpenAL Sound Library – Open Source
From: http://maniacdev.com/2010/07/nice-easy-ios-openal-sound-library-open-source/Nice & Easy iOS OpenAL Sound Library – Open SourcePlaying sounds using Apple’s AVAudioPlayer is pretty simple,转载 2012-07-30 17:19:08 · 1039 阅读 · 0 评论 -
do you know any crossplatform sound effects library (iOS and Android)?
http://stackoverflow.com/questions/11889714/do-you-know-any-crossplatform-sound-effects-library-ios-and-androidQuestion: Which of the libraries below (or other) would be suitable for applyin转载 2012-08-15 11:12:13 · 775 阅读 · 0 评论 -
iPhone | How to Change Your iPhone IMEI with ZiPhone (Windows)(改IMEI)
iPhone |How to Change Your iPhone IMEI with ZiPhone (Windows) Monday, 11th February 2008, 01:02 pm These are step by step instructions how to change your iPhone IMEI easily! You can转载 2012-08-16 01:13:07 · 3958 阅读 · 0 评论 -
iphone 音频文件的读写库 libsndfile
具体见 : http://www.mega-nerd.com/libsndfile/原创 2012-08-17 10:30:09 · 989 阅读 · 0 评论 -
[教程]【5月24更新】反汇编(Disassembler) iPhone 好东西 (附软件及插件) 【本地下载】
原帖: http://bbs.weiphone.com/read-htm-tid-363306.htmlIDA Pro Advanced v6.1 更新http://bbs.weiphone.com/read-htm-tid-2814659.html什么是反汇编? 反汇编就是把可执行的二进制文件转为汇编代码,进而可以研究该程序。IDA Pro Adv v5.2转载 2012-08-18 13:44:46 · 4419 阅读 · 0 评论 -
ios多音频混合
ios多音频混合from: http://blog.youkuaiyun.com/zengconggen/article/details/7842076ios上音频文件合成有多种方法,一是使用AVAssetExportSession结合AVMutableComposition,二是使用AVAssetReader和AVAssetWriter. 三是转换成pcm数据后处理pcm数据合成。转载 2012-08-29 15:49:55 · 2072 阅读 · 8 评论 -
Properly encrypting with AES with CommonCrypto
Properly encrypting with AES with CommonCrypto来自: http://robnapier.net/blog/aes-commoncrypto-564August 11th, 2011Leave a commentGo to commentsUpdate: You can now download the full ex转载 2012-08-27 15:18:24 · 851 阅读 · 0 评论 -
Example Source Code: Using Face Detection To Create The Illusion Of Real 3D On iOS Devices
http://maniacdev.com/2012/07/example-source-code-using-face-detection-to-create-the-illusion-of-real-3d-on-ios-devices/Example Source Code: Using Face Detection To Create The Illusion Of转载 2012-08-27 15:52:12 · 975 阅读 · 0 评论 -
Welcome to OpenEars iPhone voice recognition API!
From: Download Politepix’s OpenEarsOpenEars is an shared-source iOS framework for iPhone voice recognition and TTS. It lets you implement round-trip English language speech recognition and text-to转载 2012-08-27 18:36:03 · 1217 阅读 · 0 评论 -
audio engines (ios & macx)
SFBAudioEnginehttps://github.com/sbooth/SFBAudioEngine/tree/466f6ea9768d311e82d0e90767263292bc1fded4挺好用的。原创 2012-08-29 09:55:40 · 618 阅读 · 0 评论 -
Cross Platform library in C++ for Windows, WM, WinCE, MacOS, iPhone
Cross Platform library in C++ for Windows, WM, WinCE, MacOS, iPhonefrom: http://www.24hsoftware.com/DevelopersForum/CrossPlatform-C-Library.htmlIs there a portable (Cross Platform) library转载 2012-09-07 14:43:36 · 7665 阅读 · 0 评论 -
ASSETWriterInput for making Video from UIImages on Iphone Issues
1)Adaptor classAVAssetWriterInputPixelBufferAdaptor * avAdaptor = [AVAssetWriterInputPixelBufferAdaptor assetWriterInputPixelBufferAdaptorWithAssetWriterI nput:writerInputsourcePixelBufferAttribut转载 2012-09-27 10:27:50 · 1191 阅读 · 0 评论 -
Getting started to receive your in-app for free on iOS(你懂的)
Getting started to receive your in-app for free on iOSUsage of this manual means that's you agreed with the Terms Of ServiceEnabling in-appstore is simple. It takes only 3 steps:Loggin转载 2012-09-11 14:41:38 · 1798 阅读 · 0 评论 -
IPHONE stringByAddingPercentEscapesUsingEncoding来编码 URL
IPHONE下可以使用stringByAddingPercentEscapesUsingEncoding来编码。但是实际使用中,编码后的URL仍然可能会无效。因为URL的编码方式并不唯一。参见:Encode-Compare 和 URLEncodingNSString* escapedURLString = [unescapedStringstringByAddingPercent转载 2012-09-15 13:35:32 · 958 阅读 · 0 评论 -
ios objective-c nsstring uiimage calayer (nsstring draw as uiimage) 旋转
参考:点击打开链接一 、文字到图片:-(UIImage *)imageFromText:(NSString *)text{ // set the font type and size UIFont *font = [UIFont systemFontOfSize:20.0]; CGSize size = [text sizeWithFont:转载 2012-10-07 14:29:42 · 1572 阅读 · 0 评论 -
ios objective-c Gzip 压缩、解压缩
Gzip compression/decompressionfrom: http://deusty.blogspot.com/2007/07/gzip-compressiondecompression.htmlA long time ago I grabbed some code from CocoaDev to allow zlib compression/deco转载 2012-10-07 13:49:48 · 2886 阅读 · 0 评论 -
UIImage 旋转 镜像 rotation mirror
来自: 点击打开链接 // UKImage.h -- extra UIImage methods// by allen brunson march 29 2009#ifndef UKIMAGE_H#define UKIMAGE_H#import @interface UIImage (UKImage)-(UIImage*)rotate:(UIImageOrientatio转载 2012-10-07 15:25:16 · 2412 阅读 · 0 评论