目前分類:iOS開發筆記 (12)

瀏覽方式: 標題列表 簡短摘要

一開始使用這個方法解決掉三百多個驚嘆號
https://my.oschina.net/imt/blog/753313

但一直點點點實在很累

艾娃小姐 發表在 痞客邦 留言(2) 人氣()

今天用Xcode 7打包程式,在模擬器iOS 9遇到以下訊息:

Application Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

利用手機定位得到座標後,想要知道是位於台灣的哪個地區(ex. 台北市、台南市)

GMSGeocoder *test = [GMSGeocodergeocoder];

    [test reverseGeocodeCoordinate:CLLocationCoordinate2DMake(25.058418,121.534354) completionHandler:^(GMSReverseGeocodeResponse *response, NSError *error) {

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

很喜歡作者的用詞,簡單明瞭不枯燥

 

PHP物件導向的第一課:class

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

若單純只有View,加上這段可以使畫面在iOS7上正常顯示

if ([self respondsToSelector:@selector(setEdgesForExtendedLayout:)])
    self.edgesForExtendedLayout = UIRectEdgeNone;

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

1. 增加設置 info plist --> "View controller-based status bar appearance" 為 NO
2. 在AppDelegate.m 裡加上 [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

//取得整個畫面的位置和大小
CGRect windowRect = [[UIScreen mainScreen] bounds];

CGFloat HH=583;

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

範例:

UIImage *image = [UIImage imageNamed:@"image.jpg"];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 180, 300, 150)];

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

- (void)viewDidLoad

{

    [superviewDidLoad];

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

關於 NSString 的二三事

http://furnacedigital.blogspot.com/2011/04/nsstring.html


文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()

來源:
程式開發與生活玩樂的隨手筆記
http://kkwinds.blogspot.com/2010/04/iphone_19.html

文章標籤

艾娃小姐 發表在 痞客邦 留言(0) 人氣()