你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> iOS從零基礎到精通就業-OC語言入門 屬性1

iOS從零基礎到精通就業-OC語言入門 屬性1

編輯:IOS開發綜合
#import 
#import "Car.h"
#import "Phone.h"


int main(int argc, const char * argv[]) {
   
    
    Car *c1 = [[Car alloc] init];
    Car *c2 = [[Car alloc] initWithBrand:@"QQ" price:40000.0];
    
    //給c1設置品牌和價格
    [c1 setBrand:@"蘭博基尼"];
    [c1 setPrice:3000000.0];
    
    NSLog(@"%@  %.2f",[c1 brand],[c1 price]);
    
    
    
    //創建手機
    Phone *p1 = [[Phone alloc] init];
    //設置屬性
    /*
    [p1 setBrand:@"諾基亞"];
    [p1 setColor:@"白色"];
    [p1 setPrice:2000.0];
    [p1 setAddress:@"中國"];

     */
    //用點語法代替
    p1.brand = @"諾基亞";
    p1.color = @"白色";
    
    NSLog(@"手機是%@品牌的",p1.brand);
    
    //用KVC賦值(以間接的方式對屬性進行賦值)
    [p1 setValue:@"摩托羅拉" forKey:@"brand"];
    [p1 setValue:@"墨綠色" forKey:@"color"];
    
    
    NSLog(@"手機是%@品牌的",p1.brand);
    
    
    return 0;
}


 

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