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 <Foundation/Foundation.h> | |
@interface SPInvocationGrabber : NSObject { | |
id _object; | |
NSInvocation *_invocation; | |
int frameCount; | |
char **frameStrings; | |
BOOL backgroundAfterForward; | |
BOOL onMainAfterForward; | |
BOOL waitUntilDone; |
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
#include <dns_sd.h> | |
void DNSSD_API callback | |
( | |
DNSServiceRef sdRef, | |
DNSServiceFlags flags, | |
uint32_t interfaceIndex, | |
DNSServiceErrorType errorCode, | |
const char *fullname, | |
uint16_t rrtype, |
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
#include <dns_sd.h> | |
#include <resolv.h> | |
void DNSSD_API callback | |
( | |
DNSServiceRef sdRef, | |
DNSServiceFlags flags, | |
uint32_t interfaceIndex, | |
DNSServiceErrorType errorCode, | |
const char *fullname, | |
uint16_t rrtype, |
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
http://devstreaming.apple.com/videos/wwdc/2015/1026npwuy2crj2xyuq11/102/102_sd_platforms_state_of_the_union.mp4?dl=1 | |
http://devstreaming.apple.com/videos/wwdc/2015/203bxvbtrom9t1t/203/203_sd_whats_new_in_healthkit.mp4?dl=1 | |
http://devstreaming.apple.com/videos/wwdc/2015/802mpzd3nzovlygpbg/802/802_sd_designing_for_apple_watch.mp4?dl=1 | |
http://devstreaming.apple.com/videos/wwdc/2015/803q4kw6eqia7ssp17/803/803_sd_designing_with_animation.mp4?dl=1 | |
http://devstreaming.apple.com/videos/wwdc/2015/804eub264zh3x4j9yb/804/804_sd_introducing_the_new_system_fonts.mp4?dl=1 | |
http://devstreaming.apple.com/videos/wwdc/2015/805yjy11epjkgmnn11/805/805_sd_apple_watch_design_tips_and_tricks.mp4?dl=1 | |
http://devstreaming.apple.com/videos/wwdc/2015/2048w4vdjhe1i1m/204/204_sd_apple_watch_accessibility.mp4?dl=1 | |
http://devstreaming.apple.com/videos/wwdc/2015/2058z3fx76huw93/205/205_sd_getting_started_with_multitasking_on_ipad_in_ios_9.mp4?dl=1 | |
http://devstreaming.apple.com/videos/wwdc/2015/206v5ce46maax7s/206/206_sd_whats_new_in_mapkit.m |
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
curl -O http://devstreaming.apple.com/videos/wwdc/2015/216isrjt4ku9w4/216/subtitles/eng/216_sd_layout_and_animation_techniques_for_watchkit.vtt | |
curl -O http://devstreaming.apple.com/videos/wwdc/2015/304ywrr62d/304/subtitles/eng/304_sd_itunes_connect_development_to_distribution.vtt | |
curl -O http://devstreaming.apple.com/videos/wwdc/2015/103ot7lzkdri2fvn1iyh/103/subtitles/eng/103_sd_apple_design_awards.vtt | |
curl -O http://devstreaming.apple.com/videos/wwdc/2015/105ncyldc6ofunvsgtan/105/subtitles/eng/105_sd_introducing_watchkit_for_watchos_2.vtt | |
curl -O http://devstreaming.apple.com/videos/wwdc/2015/201pps6n6g0nsnz/201/subtitles/eng/201_sd_ios_accessibility.vtt | |
curl -O http://devstreaming.apple.com/videos/wwdc/2015/1086gvs7f4vryixs49s6/108/subtitles/eng/108_sd_building_watch_apps.vtt | |
curl -O http://devstreaming.apple.com/videos/wwdc/2015/301tcfp66f/301/subtitles/eng/301_sd_whats_new_in_managing_apple_devices.vtt | |
curl -O http://devstreaming.apple.com/videos/wwdc/2015/6053hq2fz0ebo0lm/605/subtitles/eng/605_sd_going_ |
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
您好: | |
我是猎头ABC(MP:18721066158 QQ:12345) 专注于互联网,目前我在寻访ios开发方向人选,很高兴能和您合作,大公司和创业公司都有~方向有互联网、电商、互联网金融~职位主要以干活为主~详细JD在下面,您可以回复一份您的简历给我,方便我给到您合适的职位~ | |
Tango 白石桥南 ios客户端开发工程师、ios技术经理 | |
今日头条 知春路站 ios(高级)开发工程师、ios技术经理 | |
宜信大数据 大望路 ios开发工程师 | |
Hulu 清华科技园 software Developer - Device/Mobile | |
口袋购物 酒仙桥 ios高级工程师 | |
火球网 国贸 ios开发工程师 |
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
extension String : CollectionType {} | |
func myLog<T>(object: T, _ file: String = __FILE__, _ function: String = __FUNCTION__, _ line: Int = __LINE__) { | |
let fn = file.split { $0 == "/" }.last | |
if let f = fn { | |
let info = "\(f).\(function)[\(line)]:\(object)" | |
NSLog(info) | |
} | |
} |
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
#include <stdio.h> | |
#include <string.h> | |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#include <sys/types.h> | |
#include <sys/uio.h> | |
#include <unistd.h> | |
#include <sys/mman.h> | |
#include <stdlib.h> | |
int main(int argv, char *argc[]) |
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
Please Note: After installation, the Kernel Debug Kit will be available at: | |
/Library/Developer/KDKs/ | |
——————————————————————————————— | |
The kernel file location has changed. | |
The kernel file location has moved to /System/Library/Kernels/kernel |
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
enum Either<T1, T2> { | |
case Left(T1) | |
case Right(T2) | |
} | |
public class MyClas { | |
func mytest<T:CustomStringConvertible>(a:T) ->String{ | |
return "\(a)" | |
} | |
func test(list:[String]) ->String{ | |
return "abcd" |
OlderNewer