This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit=`git rev-parse --short HEAD` | |
branch=`git rev-parse --abbrev-ref HEAD` | |
version=`/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "${INFOPLIST_FILE}"` | |
function processIcon() { | |
export PATH=$PATH:/usr/local/bin | |
base_file=$1 | |
base_path=`find ${SRCROOT} -name $base_file` | |
if [[ ! -f ${base_path} || -z ${base_path} ]]; then |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APP = Pages | |
WORKSPACE = Pages | |
CONFIG = InHouse | |
SCHEME = PagesInHouse | |
ICON_NAME = [email protected] | |
BASE_URL = http://beta.nsnotfound.com/pages | |
EMAIL_LIST = [email protected] | |
EMAIL_DOMAIN = lexrus.mailgun.org | |
SFTP_SERVER = [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'SDK' | |
s.version = '1.0.0' | |
s.license = 'Commercial' | |
s.summary = 'SDK summary' | |
s.homepage = 'https://sdkhomepage.com/' | |
s.author = { 'SDK author' => 'https://sdkauthor.com/' } | |
s.source = { :git => '~/Desktop/SDK' } | |
s.platform = :ios | |
s.source_files = '**/*.h' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//.m文件的行数 | |
find . -name "*.m" | xargs wc -l | |
//.m .h .xib .c 文件内容总行数 | |
find . -name "*.m" -or -name "*.h" -or -name "*.xib" -or -name "*.c" |xargs grep -v "^$"|wc -l |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <objc/runtime.h> | |
//iPhone4's wallpaper size in iOS7 | |
#define kWallpaperSizeNomal CGSizeMake(370.0,598.0) | |
//iPhone5's wallpaper size in iOS7 | |
#define kWallpaperSizeSpec CGSizeMake(372.0,696.0) | |
//esay to get the string value of patameter's name. | |
#define NameStringOfParam(param) [NSString stringWithFormat:@"%s", #param] | |
//add accessor(setter getter) for category by define. | |
#define SYNTHESIZE_CATEGORY_OBJ_PROPERTY(propertyGetter, propertySetter) \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@impelementaton NSString(Utils) | |
+ (uint64_t)sizeAtPath:(NSString *)filePath diskMode:(BOOL)diskMode | |
{ | |
uint64_t totalSize = 0; | |
NSMutableArray *searchPaths = [NSMutableArray arrayWithObject:filePath]; | |
while ([searchPaths count] > 0) | |
{ | |
@autoreleasepool | |
{ | |
NSString *fullPath = [searchPaths objectAtIndex:0]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <dlfcn.h> | |
- (NSMutableArray *)browseInstalled | |
{ | |
NSMutableArray *installedArray = installedApplications(); | |
return installedArray; | |
} | |
typedef NSDictionary *(*PMobileInstallationLookup)(NSDictionary *params, id callback_unknown_usage); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#First of all, create a new plist file named 'channnel.plist' and refer into your project. | |
#Second, move codes below in 'didFinishLaunchingWithOptions' | |
#NSString * channelPath = [[NSBundle mainBundle] pathForResource:@"channel" ofType:@"plist"]; | |
#NSDictionary*channelDic= [NSDictionary dictionaryWithContentsOfFile:channelPath]; | |
#NSString * channelIdentify = [channelDic objectForKey:@"channel"]; | |
#[MobClick startWithAppkey:UMENG_KEY reportPolicy:BATCH channelId:channelIdentify]; | |
#last step, 'cd' into the folder where xxx.ipa is there. | |
#generally, it's the name of scheme |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#imagemagick is needed http://www.imagemagick.org/ | |
#reference: http://stackoverflow.com/questions/18663013/icon-file-names-ios-7 | |
convert $1 -resize 29x29 Icon-Small.png | |
convert $1 -resize 58x58 [email protected] | |
convert $1 -resize 40x40 Icon-40.png | |
convert $1 -resize 80x80 [email protected] | |
convert $1 -resize 57x57 Icon.png | |
convert $1 -resize 114x114 [email protected] | |
convert $1 -resize 120x120 [email protected] | |
convert $1 -resize 76x76 Icon-76.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Created by http://www.gitignore.io | |
### Xcode ### | |
build/ | |
*.pbxuser | |
!default.pbxuser | |
*.mode1v3 | |
!default.mode1v3 | |
*.mode2v3 | |
!default.mode2v3 |
OlderNewer