Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [objective-c]

This tag should be used only on questions that are about Objective-C features or depend on code in the language. The tags [cocoa] and [cocoa-touch] should be used to ask about Apple's frameworks or classes. Use the related tags [ios], [macos], [apple-watch] and [tvos] for issues specific to those platforms.

objective-c
0 votes
0 answers
11 views

Unable to create framework in Xcode 15 with Objective-C throwing error "Command PhaseScriptExecution failed with a nonzero exit code"

I am trying to create objective C Network framework using Xcode 15 with minimum supported iOS version 14.0. Here are the steps I am following: I created New> Project> framework> Objective C&...
Priyanka Wadher Mistry's user avatar
1 vote
1 answer
28 views

How can I mock an Objective-C class from Swift code for unit testing?

I'm trying to unit test a Swift class that depends on an Objective-C class. Call these SwiftClass and ObjcClass. I created a protocol that contains the methods/properties of ObjcClass that SwiftClass ...
Cassiterite's user avatar
0 votes
0 answers
15 views

How to corroct get notification permission in Objc?

I have a way to get push permissions. But what I get every time is not the correct value. How can I rewrite this method? My push permission has been enabled, but it still prints out 555 first and then ...
Beginnerrrrrr's user avatar
-1 votes
0 answers
22 views

How to call "AutoFill Password" dialog like click password button in iOS system keyboard?

I want call "AutoFill Password" dialog like click password button in iOS system keyboard. Is Any iOS API can do that? I've try using ASAuthorizationPasswordRequest and ...
Shilai Zhang's user avatar
-1 votes
0 answers
14 views

kABPhoneProperty how to check the label?

I'm working in Obj-C and am using an ABPersonPicker. I am able to obtain the phone number from the selected person and output the phone number of any given index. This all works great, however I need ...
GeraldTheGerm's user avatar
-1 votes
0 answers
10 views

“'FIRMessaging' has different definitions in different modules; first difference is defined here found property”

I am currently upgrading an iOS project to version 7.1.0 by creating a new Cordova project. After integrating the 'NativeLogs' plugin, the build process in Xcode fails with multiple errors, one of ...
Gal Asraf's user avatar
0 votes
0 answers
21 views

setValidatesSecureCertificate:NO causing error

I am working on old project and something weird is happening. Below is the code we have. -(void)startRequest{ if (![NetworkConnect connectedToInternet]) { [self onError]; return; ...
Fahim Parkar's user avatar
  • 31.4k
0 votes
1 answer
26 views

Exclusion of a directory from backup : NSURLIsExcludedFromBackupKey does not always stick even though setResourceValue has reported success

I want to exclude a directory in documents storage class from backup. Setting exclusion attribute like so + (BOOL)kit_addSkipBackupAttributeForItemAtURL:(NSURL *)url { if (![[NSFileManager ...
Anton Tropashko's user avatar
-2 votes
0 answers
14 views

make a NSWindow of another app show and focused by clicking a foreground app's button in OC

I have an application H.app (the client app), it has two button a and b, By clicking these buttons, IPC send message to the server app(Also H.app), which will show window A or B. Here' s my sample ...
macro peng's user avatar
-1 votes
0 answers
27 views

Which way is preferred for a AND/OR logic? [closed]

I'm refactoring an old Objective-C project. There is 1 AND/OR logic condition that we are debating about: NSString *str1 = [[url1.path lastPathComponent] stringByDeletingPathExtension]; NSString *str2 ...
hell2809's user avatar