Skip to main content
Filter by
Sorted by
Tagged with
3 votes
2 answers
206 views

Before iOS 26 existing code working good, but from iOS 26 onwards getting nil/empty ssid data. My old code for below iOS 26 - func fetchSSIDInfo() -> String { var currentSSID = "" ...
Naresh's user avatar
  • 18.1k
0 votes
1 answer
144 views

I'd like to monitor the fitting width of an UIDatePicker set to the mode of .date on iOS. By fitting width, I mean that usually obtained by systemLayoutSizeFittingSize(CGSize(0, 0)) -- but I need to ...
John's user avatar
  • 41
1 vote
1 answer
117 views

I'm making an iOS application which can use hardware keyboard or run on Apple-Silicon macs. It seems that macos apps can take use of a very convenient APIs for checking if some of the modifier keys ...
simd's user avatar
  • 2,059
0 votes
0 answers
233 views

I'm working with a CADisplayLink in iOS to synchronize my rendering with the screen refresh rate. On devices running iOS 15 or later, CADisplayLink allows us to specify a preferredFrameRateRange using ...
zeus's user avatar
  • 13.3k
0 votes
1 answer
119 views

I have 3 subViews(2 labels, 1 UITextView) each with different background colour in my VC. I want to show them based on the flag value. The issue is when the UITextview's text empty, the textView has ...
Beast's user avatar
  • 53
0 votes
1 answer
639 views

Suppose I launched my app and kept it is in background by pressing home button and now user is started using their other apps (like WhatsApp, Instagram, Paytm etc any apps) . My requirement is that I ...
VipinYadav's user avatar
1 vote
0 answers
197 views

When using NSTextLayoutManager.addRenderingAttribute(.backgroundColor, value: NSColor.red, for: range), the background color for a line is only drawn as far as the last visible character. There is ...
Nickkk's user avatar
  • 2,747
0 votes
0 answers
143 views

can i use below one ? let app = UIApplication.value(forKeyPath: #keyPath(UIApplication.shared)) as? UIApplication for app store build instead of let app = UIApplication.shared in my application i ...
Amit Saxena's user avatar
-1 votes
1 answer
177 views

I am running into an issue where my CallDirectory app extension runs out of memory immediately when I toggle my application on in the call blocking & identification settings screen. I set ...
Chandler De Angelis's user avatar
0 votes
1 answer
56 views

I designed a special table cell, but when the application runs, its display is broken. How can I set this. (I'm new to iOS development) Thank you :) My cell design enter image description here ...
BurakEryvz's user avatar
0 votes
0 answers
69 views

UIView is available as a separate file. How can I pass data between two files without a segue? I am trying to pass data without using segue. I am using UIView in main viewcontroller. This UIView has a ...
selim's user avatar
  • 13
1 vote
0 answers
304 views

When the cursor is placed at the start of a UITextfield, pressing delete once, clears the whole textfield. Why does this issue occur and how can I fix this? Below is the code I'm using for the ...
Dawood Aamir's user avatar
1 vote
1 answer
75 views

I'm trying to run terminal command pluginkit -m in my mac app but it returns message match: unauthorized discovery flag (PKDiscoverAll).But if I run ls command it works fine. Can someone please ...
mansoor ali's user avatar
0 votes
0 answers
97 views

char* iperf_get_test_json_output_string ( struct iperf_test* ipt ); // .h file I am using iperf SDK .c file in iOS project in swift. Above function return (char *) pointer reference. I am ...
Vikas Verma's user avatar
1 vote
2 answers
1k views

Issue I am experiencing a weird behaviour with a UITextView which is inside a UIStackView with a defined spacing of 0. The UITextView is used to display a message inside a chat bubble. When the ...
benedom's user avatar
  • 13
5 votes
2 answers
2k views

I am looking for a way to enable personal Hotspot programatically in iOS using Swift or Objective-C but did not see any API or way to achieve that. My question is that even possible to do that? Does ...
Hussain Shabbir's user avatar
0 votes
1 answer
102 views

What is the expected behaviour of userNotificationCenter:willPresentNotification:withCompletionHandler: when the notification setting for an app is turned OFF in device level? I always assumed no ...
janusfidel's user avatar
  • 8,106
1 vote
1 answer
306 views

I need to setUp a NavigationBar color for a single ViewController. What Im currently doing is setting up the nav color on viewDidLoad() and resetting it to .clear (so it uses whatever color is set on ...
stompy's user avatar
  • 337
-1 votes
2 answers
65 views

I need to implement a cell inside of another cell, is it possible in any way? Or should I just find another way? thanks Edit: Sorry for the brief description, the problem here is that I've got a ...
cesar99's user avatar
0 votes
1 answer
40 views

I'm using Xcode 12, and I want to make the flip horizontal transition in the opposite direction. Right now, it goes from right to left, but I want to make it go from left to right. Any ideas?
something's user avatar
4 votes
0 answers
438 views

I have my build working fine on ios simulators, but when I plug in my iphone and run react-native run-ios --device "Max’s Iphone 12 Mini", the build fails. Error Below from rn cli below. The ...
max's user avatar
  • 501
0 votes
0 answers
325 views

This has been asked here 2 years ago. I am having the same problem and I cannot figure out if this is purely iOS bug or does my code contribute to the resulting grayscale image? My payload contains a ...
janusfidel's user avatar
  • 8,106
-1 votes
1 answer
1k views

I am refering this answer to parse url but when parse this url NSString *urlString = @"https://www.example.com/product-detail?journey_id=123456&iswa=1"; I am getting my 1st key is https:...
Sarthak's user avatar
  • 29
0 votes
1 answer
162 views

On an existing project with many many subclassed UITextFields, UITextViews and other text-based input subclasses move a UIScroll (self.view) view up nicely for keyboard avoidance. Since iOS 14 ...
JSA986's user avatar
  • 5,936
0 votes
1 answer
75 views

Can any one help me to retrive deleted contact and deleted phone calls from iPhone Programatically. Thanks, Swapnil
Swapnil1156035's user avatar
0 votes
0 answers
69 views

I have read a blog post some times ago talking about a feature of CALayers in iOS that could be marked as “private” or “secure”, so to not show up in screenshots and screen recordings/sharing. However ...
Nicola Gigante's user avatar
1 vote
1 answer
118 views

I'm developing a framework for iOS apps that allows interfacing with custom BLE devices made by my company. We're planning to distribute the framework binary with public headers to clients. I've ...
beeselmane's user avatar
  • 1,238
1 vote
0 answers
56 views

In my application using UICollectionViewDiffableDataSource and compositional layout, I saw this exception Thread 1: "This solver does not handle estimated items so this method does nothing. Are ...
Ortwin Gentz's user avatar
  • 54.3k
0 votes
1 answer
234 views

How do I allow my tableView to be selectable by overriding hitTest? I have a tableview that lives outside of bounds of its superview so I need to override hitTest of the view containing the superview. ...
Mocha's user avatar
  • 2,303
1 vote
0 answers
402 views

I'm using Alamofire for data downloading and passing the data by using Future Publisher and in another class I'm accessing that data and decoding the JsonData and again passing it by using another ...
Loki's user avatar
  • 11
0 votes
0 answers
27 views

There are dozens of questions about this on stackoverflow, but all conclude with the same answer that doesn't work in my case and doesn't apply to my situation... -all_load and/or -ObjC linker flags I ...
Jason L.'s user avatar
0 votes
1 answer
214 views

I've a backBarButtonItem for few view controllers it is default showing with back arrow and text I wanted to create a leftBarButtonItem for some other view controller(which are presented instead of ...
iOSDude's user avatar
  • 304
0 votes
1 answer
99 views

This is conceptually similar to Autolayout height equal to MAX(multiple view heights) except that question is sizing a container view, but I am wanting both buttons to be sized to the height of the ...
ashipma's user avatar
  • 469
2 votes
0 answers
629 views

I need to create a WkWebView with adaptive size.(The size will mostly be fixed i.e 300 * 250 and sometimes it could have a dynamic height. It depends on the type of response I get from server) The ...
Cloy's user avatar
  • 2,191
0 votes
1 answer
109 views

I am trying to add dynamic UITableView inside UITableViewCell, but i am unable to manage height of cell. please assist me. Thanks.
Bhimashankar's user avatar
-1 votes
1 answer
516 views

I know this question is duplicate, but latest answer is not available. I have tried so many options to achieve this, but no use. I want to update my Firebase SDK from my old project. pod install --no-...
Naresh's user avatar
  • 18.1k
3 votes
2 answers
1k views

I have a framework that depends on a couple of pods such as IQKeyboardManagerSwift, It used to work fine when I generate framework file and integrate it in a project that has the required pods ...
Sayed Obaid's user avatar
-1 votes
1 answer
46 views

I wanted to try working with Cocoa Touch to create a table view but having issues. After I create the UITableViewController file and attach it to my storyboard table view's custom class, I expected to ...
forginSpell's user avatar
0 votes
0 answers
459 views

My RTSP url is suitable for all iPhone except iPhone 12 series with MobileVLCKit framework. below iPhone12 it's works fine with MobileVLCKit libraries. but in iPhone12 i found "Unable to ...
Manish Mishra's user avatar
0 votes
1 answer
719 views

I want to create a UIFont that is both black in weight (heavier than bold) and italic, without hardcoding any font names or anything. All my attempts have came up short. You can do it via UIFont....
christianselig's user avatar
1 vote
1 answer
1k views

I observe when an AVPlayer finishes play in order to present a UIAlert at the end time. NotificationCenter.default.addObserver( self, selector: #selector(presentAlert), name: ....
Curiosity's user avatar
  • 346
1 vote
0 answers
116 views

On Xcode's Interface Builder, if I add a UISplitViewController to my storyboard, the width of the view of the rootViewController for the splitViewController's master is larger than the area assigned ...
SuddenMoustache's user avatar
0 votes
1 answer
59 views

Using MKStoreKit for an auto-renewing subscription. Successful purchase in the sandbox. The issue is the purchase date and expiry date always log as the same, or 1hr behind the current date. With ...
JSA986's user avatar
  • 5,936
1 vote
0 answers
244 views

How can we make the index title height nearly equal to tableview height. or custom height. Please look the default behaviour of index tableview height.
VipinYadav's user avatar
6 votes
1 answer
5k views

I am learning Swift and I've been struggling a lot trying to understand how Cocoa Touch and UIKit are different. Just looking at the descriptions of the tags gives me: cocoa-touch - The Cocoa Touch ...
Pritt Balagopal's user avatar
2 votes
0 answers
79 views

I'm trying to fix an issue for two days but I really don't know what to do. I tried several solutions but nothing helped. This is the situation: I have a UIViewController and I've added a subclass of ...
Ram2048's user avatar
  • 55
0 votes
1 answer
52 views

I'd like to add section header style headers, except for each individual cell. Each cell would have a date label floating above it, with a transparent background. These labels would be "attached&...
Apophenia Overload's user avatar
1 vote
1 answer
1k views

I want to send particular key value pairs (secrets) to the app dynamically.. So by doing some investigation it seems we have apple remote assets concept (didn't find any documentation though).. Please ...
tp2376's user avatar
  • 750
1 vote
1 answer
294 views

Is there a way to trigger code to execute when tapping on the "My Location" blue dot in MapKit? I tried implementing func mapView(_ mapView: MKMapView, didDeselect view: MKAnnotationView) { ...
davidgyoung's user avatar
  • 65.3k
4 votes
0 answers
182 views

I'm using UICollectionView with NSDiffableDataSource and UICollectionViewFlowLayout, which looks like horizontal sequence of covers. By default, the insert animation looks like all the cells right to ...
smocer's user avatar
  • 165

1
2 3 4 5
690