Posts

Post not yet marked as solved
2 Replies
0 Views
I’m having the same issue signing the token, do you want to form a team and solve the issue ?
Post not yet marked as solved
2 Replies
0 Views
The website is on my MacOS in a command line project.
Post not yet marked as solved
6 Replies
0 Views
The issue is the main file that shows the window, do you know how to program the window or you just follow the program ?
Post not yet marked as solved
6 Replies
0 Views
// //  main.m //  Hostile // //  Created by Besleaga Alexandru Marian on 10/20/21. // //  #import <Cocoa/Cocoa.h> @interface NSObject @end @interface NSResponder : NSObject @end @interface NSEvent : NSObject @end @interface NSView : NSResponder @end @interface NSWindow : NSResponder @end @interface NSApplication : NSResponder @property(class, readonly, strong) __kindof NSApplication *sharedApplication; - (void)run; - (void)stop:(id)sender; - (void)terminate:(id)sender; - (void)sendEvent:(NSEvent *)event; @end typedef int *NSApp; int NSApplicationMain(int argc, const char * _Nonnull *argv); int main(int argc, const char * argv[]) {     @autoreleasepool {         // Setup code that might create autoreleased objects goes here.     }     return NSApplicationMain(argc, argv); } My questions is the following : If I have a Main file, I want to remove the Main file and see the NSWindow the Window on the display from the code that I'm programming. Where should I search in the documentation to solve these issue ?
Post not yet marked as solved
6 Replies
0 Views
Is is mandatory to import it or I can program it myself ? Kind Regards
Post not yet marked as solved
2 Replies
0 Views
Here is the code that I'm trying to develop to make the paymant button visible : // //  ViewController.m //  Geaba // //  Created by Besleaga Alexandru Marian on 9/29/21. // #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad {     [super viewDidLoad];     // Do any additional setup after loading the view. } @end @interface NSResponder : NSObject @end @interface NSView : NSResponder @end @interface NSControl : NSView @end @interface NSButton : NSControl @end typedef enum PKPaymentButtonStyle : NSInteger {          PKPaymentButtonStyleWhite = 0      } PKPaymentButtonStyle; typedef enum PKPaymentButtonType : NSInteger {          PKPaymentButtonTypePlain = 0      } PKPaymentButtonType; @interface PKPaymentButton : NSButton + (instancetype)buttonWithType:(PKPaymentButtonType)buttonType                          style:(PKPaymentButtonStyle)buttonStyle; @end My problem is that I want to program the button with no storyboard, I'm trying to create a programmable interface and I can't seam to manage the result to create the first visible interface on screen. Do you know how to help me ?
Post marked as solved
2 Replies
0 Views
I am already enrolled in the Apple Developer Program and also in the Apple Small Business Program and I wanted to ask if you are interested in understanding how a team is formed for XCode Cloud collaboration. Kind Regards, Beșleagă Alexandru Marian
Post not yet marked as solved
1 Replies
0 Views
Replied In Collaboration
Collaboration from what I understand is the process of team formation to develop a product, for example an iOS App.