Time of Update: 2018-12-04
在開發地圖的app的時候,我們發現sdk中沒有設定地圖縮放等級的概念, 要顯示地圖就是設定其中心點,然後再用一個span來控制顯示的地區,你就會問,什麼是span?其實它也與latitude, longitude有關。如果有一個縮放等級概念那開發的時候就更容易理解。我就收集到與此相關的資料,它使mkmapview有了縮放等級的概念源碼在:http://troybrant.net/blog/2010/01/set-the-zoom-level-of-an-mkmapview/數學上證明:http:
Time of Update: 2018-12-04
在網頁開發當中跑馬燈是常用到的,用來顯示通知等,在遊戲開發當中也如此。下面的代碼片斷可實現iOS中的跑馬燈效果,[labelShow sizeToFit]; CGRect frame = labelShow.frame;frame.origin.x = 320;labelShow.frame = frame;[UIView beginAnimations:@"testAnimation" context:NULL];[UIView setAnimationDuration:8.8f];
Time of Update: 2018-12-04
在軟體測試階段,為了收集更多的bug資訊,可以create一個crash伺服器,專門收集crash日誌,方便技術人員fix。收集了一些資料:http://cocoawithlove.com/2010/05/handling-unhandled-exceptions-and.htmlhttp://guoxiaoxin.blogbus.com/logs/74067257.htmlhttp://code.google.com/p/plcrashreporter/http://creativeinaus
Time of Update: 2018-12-04
如果你的app運用了CoreData技術,那麼在你修改了DB欄位以後,再在舊版本上升級為新版本時會crash. 因為升級只升級了應用app,沒有升級目錄下的db檔案。如果是開發當中,只需要deleate app再install一次。如果是上傳到appstore的軟體,那你可要小心處理了,沒有經過migrate處理的app,使用者升級後必然會crash.所需要的技術就是CoreData versioning and
Time of Update: 2018-12-04
應用開發的時候,載入資料的時候需要載入頁面,如果沒用,那麼就缺少人性化設計了。系統內建的是UIActivityIndicatorView,但它缺少文字說明,要加上文字說明的loading view只有自子封裝。代碼如下:LoadingView.h#import <UIKit/UIKit.h>@interface LoadingView : UIView{}+ (id)loadingViewInView:(UIView *)aSuperview;- (void)removeView;@
Time of Update: 2018-12-04
最近在研究線上播放的應用,其主要思路是1. http下載資料, 需要CFNetWork.framework相關知識2. 解析資料並播放 需要AudioToolbox.framework中的audio file stream service與audio queue service相關知識收集到的參考資料http://salahuddin66.blogspot.com/2010/02/radio-app-example-iphone.htmlhttp://cocoawithlove.com/20
Time of Update: 2018-12-04
參考了xcode3下的方法,具體參看:http://www.voland.com.cn/iphone-use-nslocalizedstring-internationalizationhttp://blog.csdn.net/kmyhy/article/details/6237677其方法是先建Localizable.strings檔案,並加入多語言支援,然後再運用命令列將常量字串寫入對應語言的Localizable.strings中.而xcode4則行不能,也不需要對於每一種語言都運行一下g
Time of Update: 2018-12-04
1.私人api標頭檔添加:extern "C" CGImageRef UIGetScreenImage();使用時添加:CGImageRef screenref = UIGetScreenImage();2.網路攝影機回調一 、產生capture session 執行個體二 、實現回調AVCaptureVideoDataOutputSampleBufferDelegate YCbCr or RGBAios 預設 YCbCr ,OPEN GL 和CoreGraphics推薦前者YCbCr = (
Time of Update: 2018-12-04
原始地址:OpenCV for Ios
Time of Update: 2018-12-04
XMPPStream *xmppStream; XMPPReconnect *xmppReconnect; XMPPRoster *xmppRoster;//使用者物件//需要添加的對象 //添加好友 #pragma mark 加好友- (void)XMPPAddFriendSubscribe:(NSString *)name{ //XMPPHOST 就是伺服器名, 主機名稱 XMPPJID *jid = [XMPPJID
Time of Update: 2018-12-04
本文原始地址:OpenCV for Ios 學習筆記(6)-標記檢測3標記位置的精細化 //根據相機的旋轉,調整標記的姿態//marker:捕獲到的標記 std::rotate(marker.points.begin(), marker.points.begin() + 4 - nRotations,
Time of Update: 2018-12-04
分3種情況:1.越獄之後的裝置,可以擷取完整的列表,擷取也比較方便,方法如下:http://stackoverflow.com/questions/3878197/is-it-possible-to-get-information-about-all-apps-installed-on-iphone/3878220#3878220http://www.iphonedevsdk.com/forum/iphone-sdk-development/22289-possible-retrieve-the
Time of Update: 2018-12-04
iOS5提供了一個比較強大的工具UIAppearance,可以輕鬆的統一你的介面,它提供如下兩個方法:+ (id)appearance+ (id)appearanceWhenContainedIn:(Class <>)ContainerClass,...第一個方法是統一全部改,比如你設定UINavBar的tintColor,你可以這樣寫:[[UINavigationBar appearance]
Time of Update: 2018-12-04
本文原始地址:IOS 5新增API介紹及使用1.UIStepper UIStepper *stepper = [[UIStepper alloc] initWithFrame:CGRectMake(200, 100, 0, 0)]; [stepper sizeToFit]; stepper.value = 0; stepper.minimumValue = 0; stepper.maximumValue = 1; stepper.stepValue = 0.1;
Time of Update: 2018-12-04
原始地址:IOS 6社交應用開發-新浪微博1.添加Framework.2.匯入標頭檔.#import <Accounts/Accounts.h>#import <Social/Social.h>3.確保在“設定”裡配置了社交應用的帳戶(以新浪微博舉例),如。 4.擷取新浪微博使用者.//擷取帳號儲存 ACAccountStore *strore = [[ACAccountStore alloc] init]; //擷取新浪微博的帳號類型
Time of Update: 2018-12-04
本文原始地址:OpenCV for Ios 學習筆記(2)-ARAR應用程式三要素:1.Video source(視頻源)視頻源主要承擔提供從內建相機採集到的幀。2.Processing pipeline(處理管道)處理管道主要提供一個簡單的介面給程式,它主要封裝底層的資料結構和演算法。3.Visualization
Time of Update: 2018-12-04
原始地址:iOS 6蘋果地圖應用(MapKit)-內建開發本文是蘋果案例RegionDefiner的注釋。#import "ViewController.h"#import "MyAnnotation.h"@implementation ViewController- (void)viewDidLoad{ [super viewDidLoad]; self.mainMapView = [[MKMapView alloc] init]; self.mainMapView.
Time of Update: 2018-12-04
本文原始地址:OpenCV for Ios 學習筆記(5)-標記檢測2相關性搜尋void MarkerDetector::findMarkerCandidates( const ContoursVector& contours, std::vector<Marker>& detectedMarkers){ PointsVector approxCurve;//相似形狀 std::vector<Marker> possibleMarkers;//
Time of Update: 2018-12-04
本文原始地址:OpenCV for Ios 學習筆記(3)-camera視頻捕獲和AR可視化對於增強現實應用是不可或缺的。視頻捕獲階段主要包括從裝置相機上接收幀,然後進行簡單的操作(如色彩轉換),把幀傳遞給處理管道。因為對每個幀的處理對AR應用相當關鍵,因此確保該過程的處理效率至關重要。最好達到最大效能的方式是直接存取從相機擷取幀。比如說,AVCaptureVideoPreviewLayer和UIGetScreenImage,這兩個類只能在IOS
Time of Update: 2018-12-04
原始地址:iOS 6蘋果地圖應用(MapKit)-開啟外部應用在iOS 6中,蘋果把google地圖換成了自己的地圖,看上去不錯。:iOS 6以下(google map web)iOS 6 實現代碼標頭檔匯入和判斷版本的預定義聲明 #import <MapKit/MapKit.h> #define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v