-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
832 lines (629 loc) · 20.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NSTouk</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/default.css" id="theme">
<link rel="stylesheet" href="css/nstouk.css">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section
data-background="css/hipsters.jpg"
data-background-transition="slide"
class="initial">
<h1>NSTouk</h1>
</br></br></br></br></br></br></br></br></br></br></br></br>
<h2>czyli Objective-C dla Javowca</h2>
</section>
<section
data-background="css/ity.jpg"
data-background-transition="slide"
class="initial">
<div class="">
<h2>I Ty już dziś możesz pisać<br/>Objective-C!</h2>
</div>
</br>
<div class="fragment">
<h1><a style="color: white;" href="https://code.google.com/p/j2objc/">j2objc</a></h1>
</br></br>
<h2><a style="color: white;" href="https://code.google.com/p/j2objc/">code.google.com/p/j2objc/</a></h2>
</div>
<aside class="notes">
NOTATKI do j2objc:
Działa to całkiem nieźle.
Javowe implementacje klas w objective-c.
My dzisiaj też zabawimy się w takiego translatora.
</aside>
</section>
<section
data-background="css/meeting.png"
data-background-transition="slide"
class="initial">
<div class="fragment"><h2 style="color: #282828;">Spotkały się pewnego razu </br> dwie klasy...</h2></div>
<aside class="notes">
Kolejność:
- main.m:
-> bardzo podobne do Javy
-> nie ma namespaców
-> @autoreleasepool - zarządzanie pamięcią
-> @{coś} - słowo kluczowe w Obj-C, tłumaczone przez kompilator
-> Objective-C - język kompilowany, Clang - kompilator dla Objective-C, oparty na LLVM
-> wskaźnik - obiekty alokowane są na stercie, a na stosie tylko pointery
-> Nawiasy kwadratowe - nie wywołuje się metod, ale wysyła wiadomości
-> Dwa rodzaje wiadomości - instancyjne i klasowe - składa się to na konstruktor
- GentleClass.h:
-> Potrzebujemy dwóch klas - na klasę składają się dwa pliki
-> Header jest publiczny, m jest prywatny
-> NSObject - to jak object w Javie
-> W m można klasy wewnętrzne tworzyć, ale tylko prywatne -
brak zakresow oznacza inny, słabszy podział na prywatne i publiczne
-> NSTouk-Prefix.pch
- RespectedClass.h:
-> możemy definiować protokoły wewnątrz headerów innych klas - zwykle tak się to robi
-> protokół może meć @required i @optional
-> Nazwy są przeplatane argumentami
-> Argument jest podany w nazwie - konwencja, ale zawsze stosowana
-> bardzo proste enumy - tylko integery w tle, ale za to mamy makra NS_ENUM i NS_OPTION
- GentleClass.h:
-> <protokol> do implementacji protokołów
- Plot.h:
-> @class do zaznaczenia, że klasy będą dostępne po zlinkowaniu
-> metoda klasowa plotWith...
- Plot.m:
-> wzorzec singletona
-> gcd - dispatch once
-> metoda klasowa plotWith...
-> metoda instancyjna initWith...
-> class extension - chowanie i nadpisywanie propertisów
-> @property - setter/getter + ivar, a w zasadzie obietnica (@dynamic)
-> konwencja syntezowanych ivarów - _ivar
- Plot.m:
-> blocki to domknięcia
-> kopiują sobie wszystkie referencje, które są w nich wykorzystywane
-> fucking block syntax - więc najczęściej typedef
- main.m: - tutaj dopisujemy blocka
- Plot.m:
-> nervousConversationWithBlocking
-> tworzenie i wywołanie blocka - uwaga na nil!
-> nil to null, są też inne - adress nila to zawsze 0x0
- GentleClass.h:
-> greetingsForDayTime
-> z definicji większość typów jest immutable
-> mutable też są dostępne, ale trzeba je implicite używać
-> rozwlekłe nazwy metod - konwencja, ale wszyscy ją stosują
-> stringByReplacingOccurencesOfString
-> copy / mutableCopy - najszybszy i najprostrzy sposób na przejście mutable <-> imutable
- RespectedClass.m:
-> responseForGreetings - co to za (id) jako argument?
-> id - object w objective c, dowolny - to jest dynamizm
-> jak dynamizm, to introspekcja - isMemberOfClass
-> nervousResponse
-> kolekcje - NSArray, NSMutableArray, NSMutableIndexSet
-> najpopularniejsza enumeracja - z użyciem bloku
-> object literals - tablica[element] == [tablica setObject: atIndexedSubscript], jest też taki do słowników przez [slownik setObject:(id)obj forKeyedSubscript:]
-> można sobie taką metodę napisać do dowolnek klasy - przydatne do tworzenia dsli
-> fast enumeration prawie jak w javie
- Plot.m:
-> ternary operator w objective c i c block extensions - małe, przydatne sztuczki syntaktyczne
- NSString+Calmness.h:
-> kategorie to bardzo często wykorzystywany mechanizm
-> można rozszerzać o kategorie klasy z biblioteki
-> implementacja NSString jset rozbita na kategorie
- NSString+Calmness.m:
-> implementacja bardzo oczywista, kategoria ma dostęp do całego interfejsu klasy - w tym do ivarów, nawet prywatnych
-> kategorie nie mogę nadpisywać metod już zdefiniowanych - coś się wywoła, ale nie ma gwarancji, co - undefined behavior
-> kategorie są globalne - raz stworzysz, działa wszędzie
Jak to jest zrobione?
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<section
data-background="css/runtime.jpg"
data-background-transition="slide"
class="initial">
<h1>
<a style="color: white;" href="http://opensource.apple.com/source/objc4/objc4-551.1/runtime/">Objective-C
<br/>Runtime</a>
</h1>
</br>
<div class="fragment">
<h2>
<a style="color: white;" href="http://opensource.apple.com/source/objc4/objc4-551.1/runtime/">opensource.apple.com/source/objc4/objc4-551.1/runtime</a>
</h2>
</div>
<aside class="notes">
Runtime to zwykła biblioteka w C dodająca do niego obiektowość
siedzi w urządzeniu i jest linkowana dynamicznie
otwarte źródła (yey!), ale koszmarne do czytania (makaron asseblera, makr i optymalizacji, warstwy kolejnych wstecznych kompatybilności)
najbardziej interesujące są headery, a te są wszędzie dostępne - bo coś trzeba zaimportować przecież
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>obiektowość</h2>
<h3><pre><code data-trim>
typedef struct objc_class *Class;
typedef struct objc_object *id;
struct objc_object {
uintptr_t isa;
/* ivars */
}
struct objc_class : objc_object {
Class superclass;
/* cache, ivars description list, methods list */
}
</code></pre></h3>
<aside class="notes">
to przybliżenie, bo obecnie runtime jest znacznie bardziej zoptymalizowany
jeśli czas, to anegdotka o isa w 64 bitach
objective c runtime 2.0 skrył wiele, ale koncepcja pozostała podobna
cache, ivars list, method list - to wszystko struktury - wejść do runtime.h
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2><pre><code data-trim>
[obj message];
</code></pre></h2>
<h1>⬇</h1>
<h2><pre><code data-trim>
objc_msgSend(obj, @selector(message));
</code></pre></h2>︎
<div class="fragment">
<h2>@selector ?</h2>
</div>
<aside class="notes">
objc_msgSend ma kilka wariantów i jest skrajnie zoptymalizowany - assembler z ręki
czym jest selektor? - unikalna nazwa funkcji w scopie
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2><pre><code data-trim>
- (NSString*)string:(NSString* string) {
/* ... */
}
</code></pre></h2>
<h1>⬇</h1>
<h2><pre><code data-trim>
NSString* string(id self,
SEL _cmd,
NSString* string)
{
/* ... */
}
</code></pre></h2>︎
<div class="fragment">
<h2>SEL _cmd ?</h2>
</div>
<aside class="notes">
metody z dwukropkami tłumaczone są na podkreślniki
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h1>message forwarding</h1>
</br></br>
<div class="fragment">
<h3>metody identyfikowane są w runtimie</h3>
</div>
</br></br>
<div class="fragment">
<h3>wyjątek też pójdzie w runtimie</h3>
</div>
<aside class="notes">
można dodać metodę w runtime, jeśli jej nie znaleziono, lub przerzucić ją do innego obiektu
używane w proxy i w higher-order methods na przykład
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>dynamiczność</h2>
<h3><pre><code data-trim>
[object performSelector:@selector(selector)];
</code></pre></h3>
<h3><pre><code data-trim>
-(SEL)soMuchHigherOrderEatThisJava:(SEL) { /* ... */ }
</code></pre></h3>
<h3><pre><code data-trim>
[classes valueForKeyPath:@"method.chain.lol"];
</code></pre></h3>
<h3><pre><code data-trim>
method_exchangeImplementations(original, new);
</code></pre></h3>
</section>
<aside class="notes">
method swizzling - technika wykorzystywana w testowaniu zwlaszcza
i w mnóstwie mechanizmow z foundation
</aside>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>rozszerzalność</h2>
<h3><pre><code data-trim>
objc_allocateClassPair(Class superclass,
const char *name,
size_t extraBytes)
</code></pre></h3>
<h3><pre><code data-trim>
id objc_setAssociatedObject(id object, void *key);
</code></pre></h3>
<h3><pre><code data-trim>
class_addMethod(Class cls, SEL name, IMP imp, const char *types)
</code></pre></h3>
<aside class="notes">
AssociatedObject jest fajny w połączeniu z kategoriami
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>refleksja</h2>
<h3><pre><code data-trim>
[object isMemberOfClass:[SomeClass class]];
</code></pre></h3>
<h3><pre><code data-trim>
[object isKindOfClass:[SomeClass class]];
</code></pre></h3>
<h3><pre><code data-trim>
[object conformsToProtocol:@protocol(SomeProtocol)];
</code></pre></h3>
<h3><pre><code data-trim>
[object respondsToSelector:@selector(SomeMethod)];
</code></pre></h3>
<h3><pre><code data-trim>
Method * class_copyMethodList(Class c, unsigned int *count)
</code></pre></h3>
<aside class="notes">
introspekcja jest bardzo często używana
tyle o runtime
</aside>
</section>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<section
data-background="css/memory.jpg"
data-background-transition="slide"
class="initial">
<h2>zarządzanie pamięcią</h2>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>konstruktor / destruktor</h2>
<h2><pre><code data-trim>id object = [Class alloc];</code></pre></h2>
<h2><pre><code data-trim>Class object = [object init];</code></pre></h2>
<h2><pre><code data-trim>Class object = [Class new];
(+ helpers like [NSArray array])</code></pre></h2>
<h2><pre><code data-trim>Class second = [object copy];</code></pre></h2>
<h2><pre><code data-trim>[object dealloc];</code></pre></h2>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>MRC vs ARC</h2>
<h2><pre><code data-trim>[object retain];</code></pre></h2>
<h2><pre><code data-trim>[object release];</code></pre></h2>
<h2><pre><code data-trim>[object autorelease];</code></pre></h2>
<h1>⬇</h1>
<h2><pre><code data-trim> // ARC was here </code></pre></h2>
<aside class="notes">
reference counting jest super
przez moment nawet garbage collector był, ale nie wszedł na długo
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>ARC vs bloki</h2>
<h2><pre><code data-trim>
self.myLovelyBlock = ^{
[self whatever]; // OMG it's a cycle!
}
</code></pre></h2>
<div class="fragment">
<h2><pre><code data-trim>
__weak typeof(self) bself = self;
self.myLovelyBlock = ^{
[bself whatever]; // OMG it's weak!
}
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
[nil method] == nil // YES!</code></pre></h2>
</div>
<aside class="notes">
najgłębiej skrywana tajemnica iOSa
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2><pre><code data-trim>
@property(strong, assign, atomic, readwrite)
</code></pre></h2>
<h2><pre><code data-trim>
@property(weak, unsafe_unretained, copy, assign, nonatomic, readonly)</code></pre></h2>
</section>
</section>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<section
data-background="css/foundation.jpg"
data-background-transition="slide"
class="initial">
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><h1>Foundation / narzędzia</h1>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>kolekcje</h2>
<div class="fragment">
<h2><pre><code data-trim>
NSArray* / NSMutableArray*
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
NSDictionary* / NSMutableDictionary*
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
NSSet* / NSMutableSet*
</code></pre></h2>
</div>
<aside class="notes">
immutable by default
generalnie bardzo wydajne i dobrze zaimplementowane
bardzo mało commonsów i zamienników
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<a href="http://fuckingblocksyntax.com"><img src="css/blocks.png"></img></a>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>GCD</h2>
<div class="fragment">
<h2><pre><code data-trim>
dispatch_sync / dispatch_async
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
dispatch_once
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
dispatch_after / dispatch_time
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
dispatch_queue_create / dispatch_get_main_queue
</code></pre></h2>
</div>
<aside class="notes">
bardzo fajna rzecz, super proste api
</aside>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<h2>makra</h2>
<div class="fragment">
<h2><pre><code data-trim>
#define
</code></pre></h2>
</div>
<aside class="notes">
nie ma magii, ale czasem się przydaje
</aside>
</section>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<section
data-background="css/recap.jpg"
data-background-transition="slide"
class="initial">
<h2>powtórzenie</h2>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<div class="fragment">
<h2><pre><code data-trim>
@interface
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
@implementation
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
@interface ( ... )
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
@protocol
</code></pre></h2>
</div>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<div class="fragment">
<h2><pre><code data-trim>
@property
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
@dynamic
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
@selector
</code></pre></h2>
</div>
<div class="fragment">
<h2><a href="http://fuckingblocksyntax.com"><pre><code data-trim>
fuckingblocksyntax.com
</code></pre></a></h2>
</div>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<div class="fragment">
<h2><pre><code data-trim>
NSArray* / NSMutableArray*
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
NSDictionary* / NSMutableDictionary*
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
NSSet* / NSMutableSet*
</code></pre></h2>
</div>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<div class="fragment">
<h2><pre><code data-trim>
NSString* / NSMutableString*
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
NSNumber *
</code></pre></h2>
</div>
<div class="fragment">
<h2><pre><code data-trim>
@"", @1, @[], @{}, @(1 + 2)
</code></pre></h2>
</div>
</section>
</section>
<section
data-background="#282828"
data-background-transition="slide"
class="initial">
<section
data-background="css/source.jpg"
data-background-transition="slide"
class="initial">
<h1>źródła</h1>
<br/>
<h1>pytania</h1>
<br/>
<h1>podziękowania</h1>
</section>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
// Factor of the display size that should remain empty around the content
// margin: 0.1,
// Bounds for smallest/largest possible scale to apply to content
// minScale: 0.2,
// maxScale: 2.0,
theme: Reveal.getQueryHash().theme || 'night', // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'linear', // default/cube/page/concave/zoom/linear/fade/none
multiplex: {
// Example values. To generate your own, see the socket.io server instructions.
secret: '13898925451442871309', // Obtained from the socket.io server. Gives this (the master) control of the presentation
id: '41e064cd762404cf', // Obtained from socket.io server
url: 'localhost' // Location of your socket.io server
},
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
// { src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
{ src: 'socket.io/socket.io.js', async: true },
{ src: 'plugin/multiplex/master.js', async: true },
{ src: 'plugin/multiplex/client.js', async: true }
]
});
</script>
</body>
</html>