I want to change the notification tap behaviour. As we know that default behaviour of notification is when we tap or touch on notification then it opens the app and when we press and hold (long press) the notification then its shows the notification preview (should become interactive notification) and we can interact through notification without opening the app.
But I want to reverse the default behaviour of notification i.e. when we tap or touch on the notification then it should open the notification preview (should become interactive notification) and we can interact through notification without opening the and when we press and hold the notification then it should open the app.
Could you please guild me how can I implement this notification feature.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi,
I want to manipulate the Messages App UI and render some information by Using other iOS Apps or AppExtensions. My queries are below mentioned:
For messages received from unknown sender, I want to replace the person avatar with some logo. Screenshot1 attached for reference.
I want to customise the unknown message sender mobile number with some text e.g. +91-xxxxxxx74 with some company name like Apple without intervening and registering with operators. Screenshot2 attached for reference.
Last, After filtering with MessageFilterExtension when we open a message, just below the message I want to show some information like Unsafe or Suspicious. Screenshot3 attached for reference.
If there is any other way to show the information to user that message received is not safe or suspicious.
I'm trying to fetch current connected network (WiFi or hotspot or MobileNetwork). I'm using the below code snippet
NEHotspotNetwork.fetchCurrent { hotspotNetwork in
print("Network Information")
print(hotspotNetwork?.ssid)
print(hotspotNetwork?.isSecure ?? true)
print(hotspotNetwork?.bssid)
print(hotspotNetwork?.securityType)
print(hotspotNetwork?.signalStrength)
I'm able to get the wi fi details. but one thing I noticed that it is giving every network as a UnSecure network whether it is password protected or not.How can we differentiate secure network and Unsecure network.
And after some time, all of sudden, it stop giving all the values i.e. for each(ssid, isSecure, bssid, securityType, signalStrength) It gives nil values.
Can anyone help me upstanding this. Thanks in advance.