We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99fe35f commit 62c16f5Copy full SHA for 62c16f5
bk1ch14Appendix/Appendix/Thing.m
@@ -1,6 +1,7 @@
1
2
3
#import "Thing.h"
4
+#import "Appendix-Swift.h"
5
6
void setState (State s) {
7
NSLog(@"%d",s);
@@ -21,4 +22,8 @@ - (nullable NSString*) goodMethod: (NSString*) s {
21
22
return @[@"Mannie", @"Moe", @"Jack"];
23
}
24
25
+- (void) justTesting {
26
+ Womble* womble = [[Womble alloc] init];
27
+}
28
+
29
@end
bk1ch14Appendix/Appendix/ViewController.swift
@@ -28,6 +28,12 @@ struct Pair {
let y : Int
30
31
+class Womble : NSObject {
32
+ override init() {
33
+ super.init()
34
+ }
35
36
37
38
class ViewController: UIViewController {
39
0 commit comments