Time of Update: 2015-08-27
標籤:初涉android,在自訂標題列的時候就遇到了一些問題,由於很多都不懂,花了挺多時間才解決。好了廢話不多說,直接上問題: styles.xml<style name="AppTheme" parent="android:Theme.Holo"><style>我AndroidManifest.xml中使用的正是上述檔案中的主題:<application android:allowBackup="true"
Time of Update: 2015-08-27
標籤:@implementation AppDelegate//當應用程式載入時觸發,建立window視窗對象,讓對象的window成為程式的主視窗,並且可視.- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc]
Time of Update: 2015-08-27
標籤:RootViewController#import "RootViewController.h"#import "TouchView.h"#import "PanView.h"#import "PinchView.h"@interface RootViewController ()@end@implementation RootViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any
Time of Update: 2015-08-27
標籤:代碼規範很重要,一個良好的代碼習慣要從一開始就養成 公用類和檔案的設計 (網路請求類、資料庫類、Model類、View類,Controller<根據流程圖>、Handle類<資料處理>、公用標頭檔<宏、介面的.h{URL}、常量const{通知中樞的名字、一些狀態代碼、枚舉、結構體}、全域配置(適配{螢幕適配、iOS系統適配}的宏、系統版本判斷、顏色值{參考圖片})>) 一、檔案
Time of Update: 2015-08-27
標籤:大連東軟資訊學院鏡像伺服器地址:- http://mirrors.neusoft.edu.cn 連接埠:80北京化工大學鏡像伺服器地址:- IPv4: http://ubuntu.buct.edu.cn/ 連接埠:80- IPv4: http://ubuntu.buct.cn/ 連接埠:80-
Time of Update: 2015-08-27
標籤:響應者鏈就是當子視圖不響應,父視圖有響應事件,父視圖響應#import "RootViewController.h"#import "ResponderView.h"@interface RootViewController ()@end@implementation RootViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the
Time of Update: 2015-08-27
標籤:#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[[UIWindow alloc]
Time of Update: 2015-08-27
標籤://// ViewController.m// 點餐系統//// Created by YaguangZhu on 15/8/27.// Copyright (c) 2015年 YaguangZhu. All rights reserved.//#import "ViewController.h"@interface ViewController
Time of Update: 2015-08-27
標籤:Android 5.1 源碼,編譯相關的檔案一般在build目錄下build/target/product 放了很多mk檔案;一般不同的產品會有不同的目錄假設我不想編譯OpenWnn,在build目錄下grep一下“OpenWnn”target/product/full_base.mktarget/product/sdk_base.mk進入這兩個檔案,刪掉這兩句及相關庫後:PRODUCT_PACKAGES := libfwdlockengine
Time of Update: 2015-08-27
標籤:#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController- (void)viewDidLoad { [super viewDidLoad]; /** * UIPageControl 分頁控制項,提供以下幾個功能: 1.展示當前總頁數 2.展示當前是第幾頁
Time of Update: 2015-08-27
標籤:查看info.plist檔案,有關後台啟動並執行所有modeRequired background modes:1、App plays audio or streams audio/video using AirPlay2、App registers for location updates3、App provides Voice over IP services4、App processes Newsstand Kit downloads5、App communicates with
Time of Update: 2015-08-27
標籤:#import "RootViewController.h"#import "ActionView.h"#import "UIColor+MyUIColor.h"@interface RootViewController ()@end@implementation RootViewController- (void)viewDidLoad { [super viewDidLoad]; //self指的是當前對象 RootViewController //NSLog(@"%
Time of Update: 2015-08-27
標籤:#import "RootViewController.h"#define kScreenWidth [UIScreen mainScreen].bounds.size.width#define kScreenHeight [UIScreen mainScreen].bounds.size.height@interface RootViewController () <UIScrollViewDelegate>@end@implementation
Time of Update: 2015-08-27
標籤: NSArray *arrayText = @[@"使用者名稱",@"密碼",@"確認密碼",@"手機號",@"郵箱"]; NSArray *placeholders = @[@"請輸入使用者名稱",@"請輸入密碼",@"請確認密碼",@"請輸入手機號",@"請輸入郵箱"]; NSInteger y = 30; for (int i = 0; i < 5; i++) { LTView *aView = [[LTView
Time of Update: 2015-08-27
標籤:#import "RootViewController.h"#import "UIColor+MyUIColor.h"@interface RootViewController ()@end@implementation RootViewController/* UITapGestureRecognizer是輕拍?手勢辨識器,能識別輕拍操作 UILongPressGestureRecognizer是?長按?手勢辨識器,能識別?長按操作。
Time of Update: 2015-08-27
標籤:android 融雲 一 拍照目前拍照融雲提供兩種方案 1 SDK kit 包中內建的拍照 關鍵類 : CameraInputProvider 此類點擊是喚起 TakingPicturesActivity 特點是拍照後 勾選完成 會有一個預覽介面 此方案如果在某些機型上 點擊勾選後無響應 是因為一些機型喚起 系統相機後 把下面的棧資源回收了 已經做了
Time of Update: 2015-08-27
標籤:OnTouchListener TouchLis = new OnTouchListener() {@SuppressLint("NewApi")@Overridepublic boolean onTouch(View v, MotionEvent event) {// TODO Auto-generated method stubif(event.getAction() == MotionEvent.ACTION_UP){
Time of Update: 2015-08-27
標籤:ui功能分析 點擊對應的按鈕後,讓湯姆貓展現對應的動畫步驟分析 1、搭建UI介面 2、監聽按鈕點擊 3、根據點擊的按鈕執行對應的動畫知識點: 1、UIImageView幀動畫的使用 2、UIImage的2種載入方式 3、重複代碼的封裝抽取 4、文檔注釋的寫法UIImageView幀動畫相關屬性和方法 @property(nonatomic,copy) NSArray *animationImages; 需要播放的序列幀圖片數組(裡面都是UIImage對象,會按順序顯示裡面的圖片)
Time of Update: 2015-08-27
標籤:actionbar文字置中 android 經常會用到將ActionBar文字置中的問題,這裡寫個代碼如下: //把actionBar的文字標題置中 public static void centerActionBarTitle(Activity activity) { int titleId =
Time of Update: 2015-08-27
標籤:源碼 團隊 ios開發 編碼 創意 我們要學會封裝,慢慢培養一種封裝的思想這樣對我們的項目開發很有用處項目的成敗一個在於創意 另一個就是編碼的品質想在市場上的項目很多很多,但是真正能經曆住考驗的軟體不多 因為項目開發中有個很重要的因素:我們開發的項目如果不去用mvc 的思想去設計我們的代碼這對後期我們對項目的升級維護