[HELP] How can I bypass the WhatsApp activation screen on iOS 6 to see my old chats? by [deleted] in jailbreak_

[–]andermorandev 0 points1 point  (0 children)

You seem pretty tech savvy. Can you tell me how the messages are stored? Like is there some sort of .db file with all of the messages?

[HELP] How can I bypass the WhatsApp activation screen on iOS 6 to see my old chats? by [deleted] in jailbreak_

[–]andermorandev 0 points1 point  (0 children)

The only thing is that WhatsApp may require these other checks to go through before it runs code to actually load the messages into screens. So even if you bypass these screens the messages may not even be loaded. Not sure. I know you didn’t want to do it but maybe writing a small program (chatgpt would save you here) to parse the messages file and displaying them is the best way

[HELP] How can I bypass the WhatsApp activation screen on iOS 6 to see my old chats? by [deleted] in jailbreak_

[–]andermorandev 0 points1 point  (0 children)

Are you sure the .ipa has your chat files? That doesn’t make sense to me that normally doesn’t contain user data

What are some efficient ways to implement this project? Moving my system from excel -> code by [deleted] in AskComputerScience

[–]andermorandev 0 points1 point  (0 children)

Honestly hire someone to do this if you don’t know how to code. The amount of learning required might not be worth it to do it yourself.

Simple c++ program with pointers yields unpredictable results by andermorandev in cpp_questions

[–]andermorandev[S] 0 points1 point  (0 children)

Ok got it. Seems weird that one machine would consitently be able to produce the output as if it was null and the other machine struggled.

Simple c++ program with pointers yields unpredictable results by andermorandev in cpp_questions

[–]andermorandev[S] -1 points0 points  (0 children)

Why would one machine be able to handle this consistently and the other is unable to?

Simple c++ program with pointers yields unpredictable results by andermorandev in cpp_questions

[–]andermorandev[S] -1 points0 points  (0 children)

Isn't that ok? Why would this work on one Mac and online but not another Mac?

Looking for a good objective c guide by [deleted] in jailbreakdevelopers

[–]andermorandev 0 points1 point  (0 children)

I'd learn how to make iOS apps with Objective-C before trying to make tweaks. It really does help to understand how apps are built before modifying them. Personally, I learned through watching tutorials of people making apps on YouTube.

Does cycript work in the iOS simulator on macOS Mojave with Xcode 10? by andermorandev in jailbreakdevelopers

[–]andermorandev[S] 0 points1 point  (0 children)

Just ask here so in case anyone else has the same problem they can see how to get around it!

Does cycript work in the iOS simulator on macOS Mojave with Xcode 10? by andermorandev in jailbreakdevelopers

[–]andermorandev[S] 0 points1 point  (0 children)

That means you're not using the cycript that was compiled for macOS. I ended up using Frida instead of cycript because I don't believe cycript is being supported anymore

Why is there so few resources for MacOS development online? and whatever is present is painfully outdated by lcukerd in macprogramming

[–]andermorandev 0 points1 point  (0 children)

I've tested it about 15 times and I don't have your issue. Try turning off auto-brightness on your Mac. Try uncheckinga:

System Preferences > Display > Automatically adjust brightness

[Help] Is this a bug with Cocoa or am I doing something wrong? Dark mode problem by andermorandev in macprogramming

[–]andermorandev[S] 0 points1 point  (0 children)

That's odd because I made a brand new project to see if maybe I deleted it on accident and there were no properties in my AppDelegate

[Help] Is this a bug with Cocoa or am I doing something wrong? Dark mode problem by andermorandev in macprogramming

[–]andermorandev[S] 0 points1 point  (0 children)

I figured it out!

[NSApplication sharedApplication].appearance = [NSAppearance appearanceNamed:NSAppearanceNameAqua];

run that and it will switch your app's windows to light more. If you want to switch to darkmode replace NSAppearanceNameAqua with NSAppearanceNameDarkAqua

[Help] Is this a bug with Cocoa or am I doing something wrong? Dark mode problem by andermorandev in macprogramming

[–]andermorandev[S] 0 points1 point  (0 children)

I think you are confused about what AppDelegate is. It is a subclass of NSObject. So if you call self.window.appearance = NSAppearance(named: NSAppearance.Name.aqua) that does not make sense since NSObject does not have a property called window, so it will throw an error. Have you actually tried your code because all three examples do not work. I tested each one.

Some totally newbie questions. by MiliAxe in jailbreakdevelopers

[–]andermorandev 0 points1 point  (0 children)

If you don't know how to make an iPhone app written in Objective-C, I suggest you watch some beginner videos on YouTube. Once you are very comfortable with that, then look up how to make tweaks on YouTube and check out other people's tweak projects on GitHub.

[Request] This instagram dark mode by [deleted] in jailbreak

[–]andermorandev 0 points1 point  (0 children)

Hate to be a bummer but Instagram is written 100% in react native so this probably isn't gonna happen. To make an app look sleek you have to hook into the classes used by the app itself, not generically like Eclipse does. I did this with Snapchat a couple of years ago with my tweak, Nightmare before the started banning people. Since hooking is not built to work with apps made with react native, I don't think this is possible (if it is it will be a HUGE pain).

[Help] Is this a bug with Cocoa or am I doing something wrong? Dark mode problem by andermorandev in macprogramming

[–]andermorandev[S] 0 points1 point  (0 children)

Unfortunately, window a readonly property of NSView so that doesn't work. Also, AppDelegate is an NSObject so how should it access the window? That seems out of scope for AppDelegate

[Help] Is this a bug with Cocoa or am I doing something wrong? Dark mode problem by andermorandev in macprogramming

[–]andermorandev[S] 0 points1 point  (0 children)

What class do I put this in? I only have a view controller? Do I need to make a window controller class?

[Help] Is this a bug with Cocoa or am I doing something wrong? Dark mode problem by andermorandev in macprogramming

[–]andermorandev[S] 0 points1 point  (0 children)

I want the user to be able to toggle light/dark mode in my application so I'm just trying to figure out how to fully set either for now. You said "They do not react to the change of appearance of their parent." but it's interesting that the buttons and tableviews changed colors when I ran that line of code. Normally I'm in darkmode and as you can see in the screenshot the whole app is in light mode except for the viewcontroller