Time of Update: 2015-08-08
標籤:ios 陰影 iOS–為視圖添加陰影情況一:視圖添加圓角,在添加陰影 //陰影視圖 self.viewShadow = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 100, 100)]; self.viewShadow.backgroundColor = [UIColor redColor];
Time of Update: 2015-08-08
標籤:64位適配 ios pbxproj 編譯失敗 xcode編譯設定 程式從32bit轉到64bit總結:一、出現各種 “OBJC_CLASS$_ShareSDK”, referenced from:解決方案: 網上版本: - 選中Targets—>Build Settings—>Architectures。
Time of Update: 2015-08-08
標籤:一、調用打電話介面[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel://%@",_phoneNumber]]]; 二、發送短訊息介面調用系統的傳送簡訊的介面,需要引入以下標頭檔: #import <MessageUI/MessageUI.h>系統簡訊介面的調用很簡單,
Time of Update: 2015-08-08
標籤:一、初始化方法- (instancetype)initWithTitle:(NSString *)title delegate:(id<UIActionSheetDelegate>)delegate cancelButtonTitle:(NSString *)cancelButtonTitle destructiveButtonTitle:(NSString *)destructiveButtonTitle
Time of Update: 2015-08-08
標籤: 原先sdwebimage是使用CGImageGetColorSpace(imageRef),但這個的有些圖片會報錯Aug 8 15:52:13 game--Pro.local[88338] <Error>: CGBitmapContextCreate: unsupported color space.Aug 8 15:52:13 game--Pro.local[88338] <Error>: CGContextDrawImage: invalid
Time of Update: 2015-08-08
標籤:一、初始化方法- (instancetype)initWithTitle:(NSString *)title message:(NSString*)message delegate:(id /*<UIAlertViewDelegate>*/)delegate cancelButtonTitle:(NSString *)cancelButtonTitle
Time of Update: 2015-08-08
標籤:Descriptionbobo has a sequence a 1,a 2,…,a n. He is allowed to swap two adjacent numbers for no more than k times. Find the minimum number of inversions after his swaps. Note: The number of inversions is
Time of Update: 2015-08-08
標籤:今天看了ThinkAndroid源碼的MVC實現部分,覺得存在不少問題。一、設計TAActivity超類不合理ThinkActivity架構要求所有的Activity組件繼承TAActivity類,而TAActivity類是直接繼承Activity類的。那麼問題來了,如果我有一個ActionBarActivity,這時候該如何使用ThinkAndroid的特性,要知道JAVA不支援多繼承,組件不能同時繼承ActionBarActivity和TAActivity。二、設計過度,而且不靈活在A
Time of Update: 2015-08-08
標籤:android開發 intent 對應若水老師的視頻教程第7課這節課程講解了intent,是對動作的抽象描述,是意圖的意思,建立一個intent就可以給一個動作給他來執行.inten是android開發的精髓所在.一,點擊按鈕實現給一個指定號碼打電話 btn1.setOnClickListener(listener); private OnClickListener listener =new
Time of Update: 2015-08-08
標籤:android 卸載 應用 轉載請註明出處:http://blog.csdn.net/l1028386804/article/details/47357729不多說,不廢話,直接上代碼,大家都懂得//卸載應用程式//參數為要卸載的應用程式的包名public void uninstallPkg(String packageName){Intent intent = new Intent();
Time of Update: 2015-08-08
標籤: 顯示UITextView最大輸入字數的代碼 1 -(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text 2 { 3 //如果是刪除減少字數,都返回允許修改 4 if ([text isEqualToString:@""]) { 5 return YES; 6 }
Time of Update: 2015-08-08
標籤:一、初始化與三種載入方式 UIWebView繼承與UIView,因此,其初始化方法和一般的view一樣,通過alloc和init進行初始化,其載入資料的方式有三種:第一種:-
Time of Update: 2015-08-08
標籤:對於個人或者小團隊來說,開發一個有網路功能的遊戲是一件不容易的事情,必須掌握一門諸如Java/.net/php這類的伺服器開發語言。Bmob雲端服務方便了開發人員。Bmob可以給應用軟體快速添加一個安全靈活的後台管理系統,方便瀏覽終端儲存的各種資訊,讓開發人員們可以不需要關注伺服器後端的事情,只需要使用Bmob的Android/iOS/Cocos2d-x/Unity
Time of Update: 2015-08-08
標籤:簡訊備份的原理簡訊備份的原理。是用內容提供者讀取簡訊,然後儲存。public class SmsBackupUtils {// 回調介面public interface SmsBackupCallback {/** * 簡訊備份前調用 * @param total 簡訊的總條數 */public void beforeSmsbackup(int total);/** * 簡訊調用中調用 * @param progress 簡訊的進度
Time of Update: 2015-08-08
標籤:GPUImage是現在iOS做濾鏡最主流的開源架構。作者BradLarson基於openGL對圖片處理單元進行封裝,提供出GPUImageFilter基類,配合shader,常用濾鏡都拿下不是問題。 GPUImage中的有幾個概念:? output,輸出源? intput,輸入源? filter,濾鏡所以一個完整的濾鏡處理流程是: output+X+input,X就是濾鏡組(1+個濾鏡)。GPUImage為了方便,新版本中提供了GPUImageFilterPipeline
Time of Update: 2015-08-08
標籤:UIPickerView是iOS中的原生選取器控制項,使用方便,用法簡單,效果漂亮。 @property(nonatomic,assign) id<UIPickerViewDataSource> dataSource; @property(nonatomic,assign) id<UIPickerViewDelegate>
Time of Update: 2015-08-08
標籤:一、手勢解鎖分析1.搭建介面(一個整屏UIView和一個較小的View上)2.建立一個類NJLockView,將較小View的Class設定為NJLockView在NJLockView.m中//當視圖是通過代碼建立出來的就會調用initWithFrame:方法- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; if(self){ // Initialization
Time of Update: 2015-08-08
標籤:Many people are prone to possibly be known. However for these with premium quality, many people glimpse pretty much identical while using the originals having just about every aspect thoroughly made. Because of the primary perception, there‘re
Time of Update: 2015-08-08
標籤:Appium - iOS Mac環境結構筆者: Max.Bai時間: 2014/101. iOS開發環境的搭建 1.1系統要求 MacOS X 10.7 or higher, 10.9.2
Time of Update: 2015-08-08
標籤:android context getapplicationcontex 記憶體泄露 繼承關係 一:什麼是Context? Context,sdk中的解釋如下:interface to global information about an application