你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS技巧綜合 >> iOS Widget簡單使用

iOS Widget簡單使用

編輯:IOS技巧綜合
[摘要]本文是對iOS Widget簡單使用的講解,對學習IOS蘋果軟件開發有所幫助,與大家分享。

iOS的Widget類似Android的Notification設置flags為Notification.FLAG_ONGOING_EVENT後

OK,大約知道是什麼意思了,現在可以開始碼了.

1.創建Widget

Xcode菜單 -> File -> New -> Target.. -> 選擇Today Extension

-->

2.在plist文件裡設置純代碼的Widget

刪掉NSExtensionMainStoryboard字段
添加NSExtensionPrincipalClass字段,設置value為TodayViewController,當然也可以設置其他的ViewController

3.運行的時候選擇Today

4.添加一些控件看看效果

- (void)viewDidLoad {
    [super viewDidLoad];
    
    //添加一個button,點擊button後改變背景的顏色
    UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
    [button setTitle:@"點擊一下" forState:UIControlStateNormal];
    button.backgroundColor = [UIColor whiteColor];
    [button addTarget:self action:@selector(clickAction) forControlEvents:UIControlEventTouchUpInside];
    button.frame = CGRectMake(50, 10, 100, 30);
    [self.view addSubview:button];
    
}

- (void)clickAction{
    self.view.backgroundColor = [UIColor redColor];
}

效果如圖

看效果圖你會發現,左邊還空了一大塊,原因是Widget默認會有一個inset,重寫下面的方法就好了

-(UIEdgeInsets)widgetMarginInsetsForProposedMarginInsets:(UIEdgeInsets)defaultMarginInsets {
    return UIEdgeInsetsZero;
}

最終的效果如下:

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved