Time of Update: 2015-09-17
標籤:#import "AppDelegate.h"@interface AppDelegate (){ NSInteger _totalTickests;}@property (nonatomic, retain) NSLock *lock;@end@implementation AppDelegate- (void)task1 { NSLog(@"當前線程:%@,是否是主線程:%d",[NSThread currentThread],[[NSThread
Time of Update: 2015-09-17
標籤:在一次筆試中搞混LayoutParams的用法,特來總結一番:LayoutParams繼承於Android.View.ViewGroup.LayoutParams.LayoutParams相當於一個Layout的資訊包,它封裝了Layout的位置、高、寬等資訊。假設在螢幕上一塊地區是由一個Layout佔領的,如果將一個View添加到一個Layout中,最好告訴Layout使用者期望的布局方式,也就是將一個認可的layoutParams傳遞進去。可以這樣去形容LayoutParams,在象棋
Time of Update: 2015-09-17
標籤:1 擷取IOS裝置螢幕資訊 CGSize iOSDeviceScreenSize = [UIScreen mainScreen].bounds.size; NSString *s = [NSString stringWithFormat:@"%.0f x %.0f", iOSDeviceScreenSize.width,
Time of Update: 2015-09-17
標籤:
Time of Update: 2015-09-17
標籤:因為之前有自學過安卓的一些知識,之前在自己的電腦中也把環境和安卓模擬器都配置好了,所以現在再簡單地示範一遍。我用的是MyEclipse Professional 2014,我也用過eclipse,選擇MyEclipse完全是個人喜好,因為我覺得MyEclipse的功能會比較多一些,但是也會比較卡,啟動會比較慢,所以對電腦的配置要求比較高。在配置的過程中最讓我頭疼的就是MyEclipse的破解問題了(沒錢買正版T
Time of Update: 2015-09-17
標籤:#import "OneViewController.h"@interface OneViewController ()@end@implementation OneViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view.}- (void)didReceiveMemoryWarning { [super
Time of Update: 2015-09-17
標籤:大部分學習視頻使用Android的開發工具是eclipse,那我就來講一下eclipse
Time of Update: 2015-09-17
標籤: ios 判斷字串為空白和只為空白格解決辦法- (BOOL)isBlankString:(NSString *)string{ if (string == nil) { return YES; }
Time of Update: 2015-09-17
標籤:錯誤資訊
Time of Update: 2015-09-17
標籤:myeclipse10添加spring applicationcontext.xml出現小紅叉 在學習Spring架構的時候,遇到這樣的問題,具體如下: 使用MyEclipse10添加Spring架構支援時,applicationContext.xml檔案出現小紅叉650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00
Time of Update: 2015-09-17
標籤:spring 配置 <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Time of Update: 2015-09-17
標籤:配置 spring transaction <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:context="http://www.springframework.org/schema/context"
Time of Update: 2015-09-17
標籤:配置 spring mybatis <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Time of Update: 2015-09-17
標籤:WindowManager.LayoutParams:int TYPE_SYSTEM_ALERT Window type: system window, such as low power alert.(系統表單,例如低電量警告提示框)int TYPE_SYSTEM_OVERLAY Window type: system overlay windows, which need to be displayed on top of everything
Time of Update: 2015-09-17
標籤:http://www.cocoachina.com/ios/20150909/13369.html @周楷雯Kevin 授權本站轉載。倘若在 ViewController 中添加了一個 TableView,那麼很可能在側滑返回的時候,反而先觸發了 TableView 的上下滾動,這一點是非常惱人的。通過 requireGestureRecognizerToFail()
Time of Update: 2015-09-17
標籤:下載了Android App安裝檔案後,在執行安裝時不能顯示"完成,開啟"介面,這是因為沒有為intent設定setFlags(Intent.FLAG_ACTIVITY_NEW_TASK)./** * 安裝APK檔案 */private void installApk(String savePath, String fileName) { File apkfile = null; try { apkfile = new File(savePath,
Time of Update: 2015-09-17
標籤: 平台資訊:核心:linux3.4.39系統:android4.4 平台:S5P4418(cortex a9)瘋耔(歡迎轉載,請註明作者)歡迎指正錯誤,共同學習、共同進步!! 關注博主新浪部落格:http://weibo.com/cpjphone TFT-lCD常用的介面,TTL(RGB)、LVDS、EDP、MIPI,這篇我們大致說一下這些介面的訊號組成已經基本原理。一、TTL1、TTL介面概述TTL(Transistor Transistor
Time of Update: 2015-09-17
標籤: 用Xcode 7 在真機(iOS 9)上運行一下工程,結果發現工程編譯不過。看了下問題,報的是以下錯誤:ld: ‘/Users/**/Framework/SDKs/PolymerPay/Library/mobStat/lib**SDK.a(**ForSDK.o)’ does not contain bitcode. You must rebuild it with
Time of Update: 2015-09-17
標籤:Mono.Android 基礎 (地址)Mono.Android項目結構是— Project + Assets + Resources + drawable + layout + values Resource.Designer.cs XXActivity.cs 其中,
Time of Update: 2015-09-17
標籤:用了三個第三方- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease]; // Override point for