Time of Update: 2016-01-20
標籤://// ViewController.m// NSBundle詳解//// Created by 大歡 on 16/1/20.// Copyright © 2016年 bjsxt. All rights reserved.//#import "ViewController.h"@interface ViewController ()@end@implementation ViewController-
Time of Update: 2016-01-20
標籤:適配方案tableView// 在ViewDidLoad裡調用該方法- (void)unifyTableView:(UITableView *)tableView { //iOS7以後將分隔線拉至邊線 if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) { [tableView setSeparatorInset:UIEdgeInsetsZero]; } if
Time of Update: 2016-01-20
標籤:AppArmor 是一款與SeLinux類似的安全架構/工具,其主要作用是控制應用程式的各種許可權,例如對某個目錄/檔案的讀/寫,對網路連接埠的開啟/讀/寫等等。 來之Novell網站的引用:AppArmor is designed to provide easy-to-use application security for both servers and workstations. Novell AppArmor is an access control system
Time of Update: 2016-01-20
標籤:1.FrameLayout:children按照從左上開始的順序排列,主要用於tabed
Time of Update: 2016-01-20
標籤:前言前幾篇說到一些HBuilder開發app的基礎教程,現在來說一下HBuilder開發app的痛點,或者說是上手的痛點,就是mui,如果你沒有研究mui就貿然的上手HBuilder,那你的開發過程是痛苦的,花一點時間研究下mui,對你之後開發app有很大的協助。網址教程再好,也會有疏漏的地方,還需要你仔細閱讀官方文檔,附地址:http://dcloudio.github.io/mui/initmui封裝了很多常用的頁面方法,都需要在init中設定,例如:1.和上拉載入,下拉重新整理配套的
Time of Update: 2016-01-20
標籤:1.AFNetworking 目前比較推薦的iOS網路請求組件,預設網路請求是非同步,通過block回調的方式對返回資料進行處理。 2.FMDB 對sqlite資料庫操作進行了封裝,demo也比較簡單。 3.MBProgressHUD 也是iOS項目常用的一個組件,用於顯示過渡效果的,比如網路請求之前顯示loading,網路結束隱藏loading。建議封裝在BaseViewController中,所有ViewController繼承就能使用。 4.MJR
Time of Update: 2016-01-20
標籤://// NSString+Range.h// 字串作業//// Created by andezhou on 15/12/17.// Copyright © 2015年 周安德. All rights reserved.//#import <Foundation/Foundation.h>@interface NSString (Range)// 截取話題##- (NSArray
Time of Update: 2016-01-20
標籤://// ViewController.m// 計算Label高度//// Created by 大歡 on 16/1/19.// Copyright © 2016年 bjsxt. All rights reserved.//#import "ViewController.h"@interface ViewController ()@end@implementation ViewController-
Time of Update: 2016-01-20
標籤:很多語言中都有深複製淺複製的概念,如C++,ObjC等。簡單來說,淺複製就是兩個變數指向了同一塊記憶體地區,深複製就是兩個變數指向了不同的記憶體地區,但是兩個記憶體地區裡面的內容是一樣的。淺複製: 深複製:iOS開發中,淺複製和深複製要更複雜一些,涉及到集合對象和非集合對象的copy與mutableCopy。非集合對象:如NSString,NSInteger,NSNumber……集合對象:如NSArray,NSDictionary,…&h
Time of Update: 2016-01-20
標籤://// ViewController.m// UIImageView詳解//// Created by 大歡 on 16/1/20.// Copyright © 2016年 bjsxt. All rights reserved.//#import "ViewController.h"@interface ViewController ()@end@implementation ViewController-
Time of Update: 2016-01-20
標籤://// ViewController.m// Label富文本//// Created by 大歡 on 16/1/19.// Copyright © 2016年 bjsxt. All rights reserved.//#import "ViewController.h"@interface ViewController ()@end@implementation ViewController-
Time of Update: 2016-01-20
標籤:使用說明***************************************************Android APP 啟動黑屏最佳化補丁 Swish, YangYxd 2016.01.16Version: 1.0.0QDAC官方群:
Time of Update: 2016-01-20
標籤:什麼是VFL語言VFL(Visual Format Language),“可視化格式語言”。VFL是蘋果公司為了簡化autolayout的編碼而推出的抽象語言。文法說明H:[cancelButton(72)]-12-[acceptButton(50)]cancelButton寬72,acceptButton寬50,它們之間間距12
Time of Update: 2016-01-20
標籤:ImageView.ScaleType.CENTER|android:scaleType="center" 以原圖的幾何中心點和ImagView的幾何中心點為基準,按圖片的原來size置中顯示,不縮放,當圖片長/寬超過View的長/寬,則截取圖片的置中部分顯示ImageView的size.當圖片小於View 的長寬時,只顯示圖片的size,不剪裁。 ImageView.ScaleType.CENTER_CROP|android:scaleType="centerCrop"
Time of Update: 2016-01-20
標籤://// UIColor+Radom.h// 七彩方塊//// Created by 大歡 on 16/1/18.// Copyright © 2016年 bjsxt. All rights reserved.//#import <UIKit/UIKit.h>@interface UIColor (Radom)+ (UIColor *)Random;@end/*******************************
Time of Update: 2016-01-20
標籤://// ViewController.m// 飛舞的UIView//// Created by 大歡 on 16/1/18.// Copyright © 2016年 bjsxt. All rights reserved.///********************************************************/#import "ViewController.h"#define SCREEN_WIDTH
Time of Update: 2016-01-20
標籤:在做登陸或者註冊的時候,軟鍵盤經常可能會擋住一些介面。我們需要在輸入完成之後隱藏軟鍵盤。在我們點擊空白處或者非EditText的地方來隱藏軟鍵盤。public class HomeActivity extends Activity { ...... @Override public boolean dispatchTouchEvent(MotionEvent ev) { if (ev.getAction() ==
Time of Update: 2016-01-20
標籤:前言 最近項目忙完了準備把百度地圖的方法都熟悉一遍,寫demo的同時也寫下部落格來記錄下模擬器設定 我直接就複製我以前寫過的一篇的圖了,懶得。。。 擷取百度地圖KEY使HTTP能正常使用 讓百度地圖能正常使用 確認項目中添加mapapi.bundle檔案以及添加方法正確,不能刪除或隨意更改其中files檔案夾下的內容配置開發環境 iOS第三方-百度地圖地圖SDK(一)
Time of Update: 2016-01-20
標籤:該樣本假設Android開發環境已經搭建完成,NDK也配置成功;1、在Eclipse上建立Android工程,名稱為ndkdemo。修改res\layout\activity_main.xml<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools"
Time of Update: 2016-01-20
標籤:- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{ if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) { [tableView