Time of Update: 2015-08-01
標籤:UIControl事件1.UIControlEventTouchDown單點觸摸按下事件:使用者點觸螢幕,或者又有新手指落下的時候。2.UIControlEventTouchDownRepeat多點觸摸按下事件,點觸計數大於1:使用者按下第二、三、或第四根手指的時候。3.UIControlEventTouchDragInside當一次觸摸在控制項視窗內拖動時。4.UIControlEventTouchDragOutside當一次觸摸在控制項視窗之外拖動時。5.UIControlEventT
Time of Update: 2015-08-01
標籤:UIImagePickerController1.+(BOOL)isSourceTypeAvailable:(UIImagePickerControllerSourceType)sourceType; 檢查指定源是否在裝置上可用。//檢查照片源是否可用[UIImagePickerController
Time of Update: 2015-08-01
標籤:UISwitch屬性1. onTintColor 處於on時switch 的顏色? switchImage.onTintColor = [UIColor grayColor];2.tintColor
Time of Update: 2015-08-01
標籤:UIPikerView的屬性 1. numberOfComponents:返回UIPickerView當前的列數NSInteger num = _pickerView.numberOfComponents;NSLog( @"%d", num);2. - (NSInteger)numberOfRowsInComponent:(NSInteger)component; 返回component列中有多少行。NSInteger numInCp = [_pickerView
Time of Update: 2015-08-01
標籤:UILabel屬性1.text:設定標籤顯示的文本。 2.attributedText:設定標籤屬性文本。 Ios代碼 NSString *text = @"first"; NSMutableAttributedString *textLabelStr = [[NSMutableAttributedString alloc] initWithString:text];
Time of Update: 2015-08-01
標籤:UISegment屬性1.segmentedControlStyle設定segment的顯示樣式。typedef NS_ENUM(NSInteger, UISegmentedControlStyle) {UISegmentedControlStylePlain, // large plain 系統預設平板樣式segmentedControl.segmentedControlStyle =
Time of Update: 2015-08-01
標籤:Android系統從1.6版本開始就支援TTS(Text-To-Speech),即語音合成。但是android系統預設的TTS引擎:Pic
Time of Update: 2015-08-01
標籤:UITextView相關屬性 • text: 設定textView中文本_textView.text = @"Now is the time for all good developers to come to serve their country.\n\nNow is the time for all good developers to come to serve their country.
Time of Update: 2015-08-01
標籤:有時候我們需要為一個App產生不同環境下的版本,比如Debug版本,Appstore版本,Adhoc版本,之前見到別人都是用多個Target,但其實不用多個Target也行,這個替代方案就是多個Configurations。如果你是用Xcode5之前的版本,可能參考這兩篇文章就行:如何在一個裝置上安裝一個App的兩個不同版本iOS開發之同一應用設定不同表徵圖和名稱 -
Time of Update: 2015-08-01
標籤:error: Embedded binary‘s bundle identifier is not prefixed with the parent app‘s bundle identifier.錯誤原因: iPhone APP, watch APP 和 watch extension 三者的bundle ID 不符合蘋果的命名規範.其命名規範必須遵循固定的格式. bundle ID 的命名規範就不說了,下面用*****代替.
Time of Update: 2015-08-01
標籤:android參考:http://blog.csdn.net/sunnybeike/article/details/8098349odroid prebuilt版img:http://com.odroid.com/sigong/nf_file_board/nfile_board.php?tag=ODROID-PCodroid 源碼下載http://com.odroid.com/sigong/nf_file_board/nfile_board_view.php?keyword=&
Time of Update: 2015-08-01
標籤:gradle打包 proguard混淆 多渠道apk 多包名apk eclipse gradle打包 當傳統的手工打包方式遇上同一應用,多渠道/多包名及多種引導頁/icon等等差異時,就變成了苦不堪言的純體力活了。 但有了Gradle這一切不再是問題了,Gradle使得這一切變的so
Time of Update: 2015-08-01
標籤:android第一個錯誤: host Executable: cmu2nuance (out/host/linux-x86/obj/EXECUTABLES/cmu2nuance_intermediates/cmu2nuance) /usr/bin/ld: cannot find
Time of Update: 2015-08-01
標籤:應用程式層級 註冊 machinetoapplication allowdefinition wcf 錯誤資訊如下:“/”應用程式中的伺服器錯誤。 配置錯誤 說明: 在處理向該請求提供服務所需的設定檔時出錯。請檢查下面的特定錯誤詳細資料並適當地修改設定檔。 分析器錯誤訊息: 在應用程式層級之外使用註冊為
Time of Update: 2015-08-01
標籤:ffmpeg 視頻 轉碼 移植 ios 本文記錄IOS平台下基於FFmpeg的視頻轉碼器。該轉碼器實際上移植自ffmpeg工程中的ffmpeg.c原始碼。有關ffmpeg.c的原始碼可以參考文章《ffmpeg.c函數結構簡單分析(畫圖)》,在這裡就不重複記錄了。原始碼項目的目錄結構。下列C語言檔案拷貝自FFmpeg原始碼:
Time of Update: 2015-08-01
標籤:在rootViewController中的viewDidLoad:方法中調用[[UIApplication sharedApplication].keyWindow addSubview:]發現無效調試發現[UIApplication sharedApplication].keyWindow 為nil因為這個時候appdelegate中的keywindow還沒有建立成功我們可以用[[[UIApplication sharedApplication]
Time of Update: 2015-08-01
標籤://// CZAppView.m// 應用管理//// Created by YaguangZhu on 15/8/1.// Copyright (c) 2015年 YaguangZhu. All rights reserved.//#import "CZAppView.h"#import "app.h"@interface CZAppView ()@property (weak, nonatomic) IBOutlet UIImageView
Time of Update: 2015-08-01
標籤: 雖然今天禮拜六還在加班,但是在等介面,所以還是有很多時間來自己學點東西的,所以就接著昨天的來。今天繼續學的是不通過主線程來更新主線程的介面的問題。 昨天是用的開啟線程調用Handler來更新線程,那個效果用的方面比較廣闊,那麼我們還有幾種方法將耗時的代碼剝離出來不在主線程裡面執行,然後通過各種方法來更新UIThread .今天學到的是利用AsynTask來更新主介面的空間。 然後我們先來說說AsynTask: AsynTask:Asynchronous
Time of Update: 2015-08-01
標籤:#import <Foundation/Foundation.h>#import <math.h>@interface Point2D : NSObject{ double _x; // x值 double _y; // y值}// x值的getter和setter- (void)setX:(double)x;- (double)x;// y值的getter和setter- (void)setY:(double)y;- (double)y;//
Time of Update: 2015-08-01
標籤:使用android自動化測試載入器monkeyrunner啟動應用時,需要填寫被測程式的包名和啟動的Activity,以下有兩種查看應用程式套件名package和入口activity名稱的方法:方法一:使用aapt //aapt是sdk內建的一個工具,在sdk\builds-tools\目錄下1.以ES檔案瀏覽器為例,命令列中切換到aapt.exe目錄執行:aapt dump badging