zoukankan      html  css  js  c++  java
  • 【代码笔记】iOS-单例

    一,工程图。

    二,代码。

    NetManager.h

    复制代码
    #import <Foundation/Foundation.h>
    
    @interface NetManager : NSObject
    
    + (id)sharedManager;
    
    -(void)firstPrintf;
    -(void)secondPrintf;
    -(void)threeprintf;
    -(void)fourprintf;
    
    
    
    @end
    复制代码

     

    NetManager.m

    复制代码
    #import "NetManager.h"
    
    
    static NetManager *manager;
    
    @implementation NetManager
    
    #pragma mark - 获取单例
    + (id)sharedManager{
        if (!manager) {
            manager = [[NetManager alloc]init];
        }
        return manager;
    }
    
    -(void)firstPrintf
    {
        NSLog(@"first Printf!!!!");
    }
    -(void)secondPrintf
    {
        NSLog(@"second printf!!!!!");
    }
    -(void)threeprintf
    {
        NSLog(@"three printf!!!!!!!");
    }
    -(void)fourprintf
    {
        NSLog(@"fourprintf!!!!!!");
    }
    复制代码

     

    RootViewController.h

    #import <UIKit/UIKit.h>
    
    @interface RootViewController : UIViewController
    
    @end

     

    RootViewController.m

    复制代码
    #import "RootViewController.h"
    
    //加上单例的头文件
    #import "NetManager.h"
    
    @interface RootViewController ()
    
    @end
    
    @implementation RootViewController
    
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
    {
        self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
        if (self) {
            // Custom initialization
        }
        return self;
    }
    
    - (void)viewDidLoad
    {
        [super viewDidLoad];
        // Do any additional setup after loading the view.
        
        
        //单例的用法,单例中的函数,可以在程序中直接使用。
        [[NetManager sharedManager] firstPrintf];
        [[NetManager sharedManager] secondPrintf];
        [[NetManager sharedManager] threeprintf];
        [[NetManager sharedManager] fourprintf];
    }
    
    - (void)didReceiveMemoryWarning
    {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }
    复制代码

     

    三,输出。

    2015-10-13 13:55:17.551 单例[7675:197760] first Printf!!!!
    2015-10-13 13:55:17.551 单例[7675:197760] second printf!!!!!
    2015-10-13 13:55:17.551 单例[7675:197760] three printf!!!!!!!
    2015-10-13 13:55:17.551 单例[7675:197760] fourprintf!!!!!!

     

     

     
     
  • 相关阅读:
    响应式笔记(1)
    javascript复制文章加版权声明代码
    div的水平和垂直居中
    javascript随机打乱数组
    javascript操作字符串的方法
    《Javascript高级程序设计》读书笔记(1-3章)
    一个将 footer 保持在底部的最好方法
    Python内置的字符串处理函数整理
    c c++怎么判断一个字符串中是否含有汉字
    shell的if判断
  • 原文地址:https://www.cnblogs.com/yang-guang-girl/p/5074928.html
Copyright © 2011-2022 走看看