Post

Replies

Boosts

Views

Activity

Reply to How to display a interface for the view with Objective-C ?
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 ?
Sep ’21
Reply to Application Error ?
// //  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 ?
Oct ’21
Reply to Collaboration
Collaboration from what I understand is the process of team formation to develop a product, for example an iOS App.
Replies
Boosts
Views
Activity
Sep ’21
Reply to Small Business Program
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
Replies
Boosts
Views
Activity
Sep ’21
Reply to How to display a interface for the view with Objective-C ?
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 ?
Replies
Boosts
Views
Activity
Sep ’21
Reply to Application Error ?
Is is mandatory to import it or I can program it myself ? Kind Regards
Replies
Boosts
Views
Activity
Oct ’21
Reply to Application Error ?
// //  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 ?
Replies
Boosts
Views
Activity
Oct ’21
Reply to Application Error ?
The issue is the main file that shows the window, do you know how to program the window or you just follow the program ?
Replies
Boosts
Views
Activity
Oct ’21
Reply to What project should I create to obtain the URL ?
The website is on my MacOS in a command line project.
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’21
Reply to Having trouble accessing App Store Connect API with generated token
I’m having the same issue signing the token, do you want to form a team and solve the issue ?
Replies
Boosts
Views
Activity
Jun ’22