Skip to content

Instantly share code, notes, and snippets.

//
// ViewController.swift
// CompositeDesignPattern
//
// Created by Nikunj Modi on 08/11/22.
//
import UIKit
struct File {
{
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json",
"basics": {
"name": "Modi Nikunj",
"label": "Lead Engineer | IOS | Swift | Backbase | Objective C | Team Collaboration | medium.com/@MdNiks | theniks.github.io/Portfolio/",
"image": "",
"email": "[email protected]",
"phone": "+917383329700",
"url": "",
"summary": "•\tI am a young and enthusiastic engineer having total relevant experience of more than 8+ years. \nCurrently working in mobiquity corporation (india) pvt. ltd. Skills in developing iPhone, iPod, iPad applications and compatible with any iOS.\n\n•\tI am eager to build good and honest relations with an organisation, which offers me learning and growth. I always try to give my 100% in the work and dedication, for me it is on a high note. I want to achieve excellence through selective short and long term goals through my chosen organisation and work field, where knowledge and experience are given their due respects.\n\n•\tW
@TheNiks
TheNiks / book.m
Created May 31, 2012 05:45 — forked from mdippery/book.m
An example of using @dynamic properties in Objective-C
#import <Foundation/Foundation.h>
@interface Book : NSObject
{
NSMutableDictionary *data;
}
@property (retain) NSString *title;
@property (retain) NSString *author;
@end
@TheNiks
TheNiks / UILabelStrikethrough.h
Created May 17, 2012 04:36 — forked from mikaelbartlett/UILabelStrikethrough.h
Simple class for IOS SDK UILabel with strikethrough
@interface UILabelStrikethrough : UILabel {
int xOffset;
int yOffset;
int widthOffset;
int stroke;
UIColor* strokeColor;
}
@property (nonatomic) int xOffset;
@property (nonatomic) int yOffset;
@property (nonatomic) int widthOffset;